From 9a1f543921de7d5fafb6efbd1845eba9263f583e Mon Sep 17 00:00:00 2001 From: Sebastian Kippe Date: Mon, 11 May 2020 10:24:38 +0200 Subject: [PATCH] Mark remaining template-lint issues as pending These need more updates outside of the templates, like e.g. Glimmer components and such. --- .template-lintrc.js | 80 ++++++++++++++++++++++++++++++++++++++++++++- 1 file changed, 79 insertions(+), 1 deletion(-) diff --git a/.template-lintrc.js b/.template-lintrc.js index a838de2..5e45040 100644 --- a/.template-lintrc.js +++ b/.template-lintrc.js @@ -11,5 +11,83 @@ module.exports = { ignore: [ 'kredits-web/templates/components/**', 'app/templates/components/**' - ] + ], + + pending: [ + { + "moduleId": "app/templates/dashboard", + "only": [ + "no-action" + ] + }, + { + "moduleId": "app/components/add-contribution/template", + "only": [ + "no-action", + "no-curly-component-invocation" + ] + }, + { + "moduleId": "app/components/add-contributor/template", + "only": [ + "no-action", + "no-curly-component-invocation" + ] + }, + { + "moduleId": "app/components/contribution-list/template", + "only": [ + "no-action", + "no-curly-component-invocation" + ] + }, + { + "moduleId": "app/components/contributor-list/template", + "only": [ + "no-action" + ] + }, + { + "moduleId": "app/components/topbar-account-panel/template", + "only": [ + "no-action" + ] + }, + { + "moduleId": "app/templates/contributions/new", + "only": [ + "no-action" + ] + }, + { + "moduleId": "app/templates/contributions/resubmit", + "only": [ + "no-action" + ] + }, + { + "moduleId": "app/templates/contributors/edit", + "only": [ + "no-action" + ] + }, + { + "moduleId": "app/templates/contributors/new", + "only": [ + "no-action" + ] + }, + { + "moduleId": "app/templates/signup/eth-account", + "only": [ + "no-action" + ] + }, + { + "moduleId": "app/templates/signup/index", + "only": [ + "no-action" + ] + } + ] };