DEV: Enable all 'recommended' passing ember template linting rules
Also sort the ember template linting rules
This commit is contained in:
parent
05e2824a23
commit
af41c37d42
|
@ -3,17 +3,36 @@ module.exports = {
|
||||||
ignore: ["**/*.raw"],
|
ignore: ["**/*.raw"],
|
||||||
|
|
||||||
rules: {
|
rules: {
|
||||||
"self-closing-void-elements": true,
|
"deprecated-render-helper": true,
|
||||||
"table-groups": true,
|
|
||||||
"style-concatenation": true,
|
|
||||||
"no-invalid-interactive": true,
|
|
||||||
"link-rel-noopener": true,
|
"link-rel-noopener": true,
|
||||||
|
"no-abstract-roles": true,
|
||||||
|
"no-args-paths": true,
|
||||||
|
"no-attrs-in-components": true,
|
||||||
|
"no-debugger": true,
|
||||||
|
"no-extra-mut-helper-argument": true,
|
||||||
|
"no-html-comments": true,
|
||||||
|
"no-index-component-invocation": true,
|
||||||
|
"no-input-block": true,
|
||||||
|
"no-input-tagname": true,
|
||||||
|
"no-invalid-interactive": true,
|
||||||
|
"no-invalid-link-text": true,
|
||||||
|
"no-invalid-meta": true,
|
||||||
|
"no-invalid-role": true,
|
||||||
|
"no-log": true,
|
||||||
|
"no-negated-condition": true,
|
||||||
|
"no-nested-interactive": true,
|
||||||
|
"no-obsolete-elements": true,
|
||||||
|
"no-outlet-outside-routes": true,
|
||||||
|
"no-partial": true,
|
||||||
|
"no-shadowed-elements": true,
|
||||||
|
"no-triple-curlies": true,
|
||||||
"no-unnecessary-concat": true,
|
"no-unnecessary-concat": true,
|
||||||
|
"no-unnecessary-component-helper": true,
|
||||||
"no-unused-block-params": true,
|
"no-unused-block-params": true,
|
||||||
"no-unbound": true,
|
"no-unbound": true,
|
||||||
|
"self-closing-void-elements": true,
|
||||||
"simple-unless": true,
|
"simple-unless": true,
|
||||||
"no-triple-curlies": true,
|
"style-concatenation": true,
|
||||||
"no-partial": true,
|
"table-groups": true
|
||||||
"no-html-comments": true
|
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
Loading…
Reference in New Issue