From 68366f99b56c8b1c815e069c0f3bc21ded2925cb Mon Sep 17 00:00:00 2001 From: Philippe Ndiaye Date: Mon, 16 Dec 2024 22:01:42 +0100 Subject: [PATCH] One hbs linter plugin to extend from for @upfluence --- linters/handlebars/index.js | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) diff --git a/linters/handlebars/index.js b/linters/handlebars/index.js index f899ed550..f7c221475 100644 --- a/linters/handlebars/index.js +++ b/linters/handlebars/index.js @@ -5,5 +5,25 @@ module.exports = { rules: { 'u-template-lint/no-bare-button': NoBareHTMLButton + }, + + configurations: { + recommended: { + extends: 'recommended', + rules: { + 'require-valid-alt-text': false, + 'simple-unless': false, + 'no-curly-component-invocation': false, + 'no-inline-styles': false, + 'require-iframe-title': false, + 'require-input-label': false, + 'no-down-event-binding': false, + 'no-invalid-interactive': false, + 'no-action': false, + 'no-nested-interactive': false, + 'no-yield-only': false, + 'no-bare-strings': false + } + } } };