DEV: Enable all 'recommended' passing ember template linting rules

Also sort the ember template linting rules
This commit is contained in:
Kane York 2020-03-26 11:13:54 -07:00 committed by Kane York
parent 05e2824a23
commit af41c37d42
1 changed files with 26 additions and 7 deletions

View File

@ -3,17 +3,36 @@ module.exports = {
ignore: ["**/*.raw"],
rules: {
"self-closing-void-elements": true,
"table-groups": true,
"style-concatenation": true,
"no-invalid-interactive": true,
"deprecated-render-helper": 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-component-helper": true,
"no-unused-block-params": true,
"no-unbound": true,
"self-closing-void-elements": true,
"simple-unless": true,
"no-triple-curlies": true,
"no-partial": true,
"no-html-comments": true
"style-concatenation": true,
"table-groups": true
}
};