From 3c65cef8bf6a7a3c6165da51d2cbde891f2a4695 Mon Sep 17 00:00:00 2001 From: Tobias Bieniek Date: Sat, 21 Dec 2019 16:10:48 +0100 Subject: [PATCH] template-lint: Use `octane` preset with a few rules disabled for now until we can comply with them... --- .template-lintrc.js | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/.template-lintrc.js b/.template-lintrc.js index d87f3719330..b22d8bb35a0 100644 --- a/.template-lintrc.js +++ b/.template-lintrc.js @@ -3,12 +3,16 @@ /* eslint-env node */ module.exports = { - extends: 'recommended', + extends: 'octane', rules: { - 'img-alt-attributes': false, + 'require-valid-alt-text': false, + 'no-action': false, + 'no-curly-component-invocation': false, 'no-html-comments': false, + 'no-implicit-this': false, 'no-unnecessary-concat': false, quotes: false, + 'require-button-type': false, }, };