diff --git a/.template-lintrc.js b/.template-lintrc.js index 8013d049aa..b0823d968f 100644 --- a/.template-lintrc.js +++ b/.template-lintrc.js @@ -1,20 +1,25 @@ module.exports = { - // extends: "recommended", + extends: "recommended", ignore: ["**/*.raw"], rules: { + "block-indentation": false, "deprecated-render-helper": true, + "img-alt-attributes": false, "link-rel-noopener": true, "link-href-attributes": true, "no-abstract-roles": true, "no-args-paths": true, "no-attrs-in-components": true, "no-debugger": true, + "no-duplicate-attributes": false, "no-extra-mut-helper-argument": true, "no-html-comments": true, "no-index-component-invocation": true, + "no-inline-styles": false, "no-input-block": true, "no-input-tagname": true, + "no-implicit-this": false, "no-invalid-interactive": true, "no-invalid-link-text": true, "no-invalid-meta": true, @@ -25,13 +30,18 @@ module.exports = { "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-triple-curlies": true, "no-unbound": true, "no-unnecessary-concat": true, "no-unnecessary-component-helper": true, "no-unused-block-params": true, + "quotes": false, + "require-button-type": false, "require-iframe-title": true, + "require-valid-alt-text": false, "self-closing-void-elements": true, "simple-unless": true, "style-concatenation": true,