DEV: Add and disable all failing 'stylistic' lints

This commit is contained in:
Kane York 2020-03-26 11:48:28 -07:00 committed by Kane York
parent e98e83a1ff
commit 7c14d9ae9f
1 changed files with 6 additions and 0 deletions

View File

@ -2,10 +2,14 @@ module.exports = {
extends: "recommended",
ignore: ["**/*.raw"],
// Pending:
// "eol-last": "always",
rules: {
"block-indentation": false,
"deprecated-render-helper": true,
"img-alt-attributes": false,
"linebreak-style": true,
"link-rel-noopener": true,
"link-href-attributes": true,
"no-abstract-roles": true,
@ -27,12 +31,14 @@ module.exports = {
"no-log": true,
"no-negated-condition": true,
"no-nested-interactive": true,
"no-multiple-empty-lines": false,
"no-obsolete-elements": true,
"no-outlet-outside-routes": true,
"no-partial": true,
"no-positive-tabindex": false,
"no-quoteless-attributes": false,
"no-shadowed-elements": true,
"no-trailing-spaces": false,
"no-triple-curlies": true,
"no-unbound": true,
"no-unnecessary-concat": true,