From 7c14d9ae9f376f39bff0bf4aaabecbdc4767e465 Mon Sep 17 00:00:00 2001 From: Kane York Date: Thu, 26 Mar 2020 11:48:28 -0700 Subject: [PATCH] DEV: Add and disable all failing 'stylistic' lints --- .template-lintrc.js | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/.template-lintrc.js b/.template-lintrc.js index b0823d968ff..41c0cd5e341 100644 --- a/.template-lintrc.js +++ b/.template-lintrc.js @@ -2,10 +2,14 @@ module.exports = { extends: "recommended", ignore: ["**/*.raw"], + // Pending: + // "eol-last": "always", + rules: { "block-indentation": false, "deprecated-render-helper": true, "img-alt-attributes": false, + "linebreak-style": true, "link-rel-noopener": true, "link-href-attributes": true, "no-abstract-roles": true, @@ -27,12 +31,14 @@ module.exports = { "no-log": true, "no-negated-condition": true, "no-nested-interactive": true, + "no-multiple-empty-lines": false, "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-trailing-spaces": false, "no-triple-curlies": true, "no-unbound": true, "no-unnecessary-concat": true,