DEV: Add and disable all failing 'stylistic' lints
This commit is contained in:
parent
e98e83a1ff
commit
7c14d9ae9f
|
@ -2,10 +2,14 @@ module.exports = {
|
||||||
extends: "recommended",
|
extends: "recommended",
|
||||||
ignore: ["**/*.raw"],
|
ignore: ["**/*.raw"],
|
||||||
|
|
||||||
|
// Pending:
|
||||||
|
// "eol-last": "always",
|
||||||
|
|
||||||
rules: {
|
rules: {
|
||||||
"block-indentation": false,
|
"block-indentation": false,
|
||||||
"deprecated-render-helper": true,
|
"deprecated-render-helper": true,
|
||||||
"img-alt-attributes": false,
|
"img-alt-attributes": false,
|
||||||
|
"linebreak-style": true,
|
||||||
"link-rel-noopener": true,
|
"link-rel-noopener": true,
|
||||||
"link-href-attributes": true,
|
"link-href-attributes": true,
|
||||||
"no-abstract-roles": true,
|
"no-abstract-roles": true,
|
||||||
|
@ -27,12 +31,14 @@ module.exports = {
|
||||||
"no-log": true,
|
"no-log": true,
|
||||||
"no-negated-condition": true,
|
"no-negated-condition": true,
|
||||||
"no-nested-interactive": true,
|
"no-nested-interactive": true,
|
||||||
|
"no-multiple-empty-lines": false,
|
||||||
"no-obsolete-elements": true,
|
"no-obsolete-elements": true,
|
||||||
"no-outlet-outside-routes": true,
|
"no-outlet-outside-routes": true,
|
||||||
"no-partial": true,
|
"no-partial": true,
|
||||||
"no-positive-tabindex": false,
|
"no-positive-tabindex": false,
|
||||||
"no-quoteless-attributes": false,
|
"no-quoteless-attributes": false,
|
||||||
"no-shadowed-elements": true,
|
"no-shadowed-elements": true,
|
||||||
|
"no-trailing-spaces": false,
|
||||||
"no-triple-curlies": true,
|
"no-triple-curlies": true,
|
||||||
"no-unbound": true,
|
"no-unbound": true,
|
||||||
"no-unnecessary-concat": true,
|
"no-unnecessary-concat": true,
|
||||||
|
|
Loading…
Reference in New Issue