From af41c37d42247630b1e7de2e6df02e0591b7bb8f Mon Sep 17 00:00:00 2001 From: Kane York Date: Thu, 26 Mar 2020 11:13:54 -0700 Subject: [PATCH] DEV: Enable all 'recommended' passing ember template linting rules Also sort the ember template linting rules --- .template-lintrc.js | 33 ++++++++++++++++++++++++++------- 1 file changed, 26 insertions(+), 7 deletions(-) diff --git a/.template-lintrc.js b/.template-lintrc.js index 17279244f34..32360e0a9e3 100644 --- a/.template-lintrc.js +++ b/.template-lintrc.js @@ -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 } };