We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2b1dd5b commit 4721b82Copy full SHA for 4721b82
lib/ember-template-lint/info.js
@@ -94,7 +94,7 @@ Object.values(configs).forEach((config) => {
94
const configuredRules = {};
95
Object.entries(lintConfigs.configuredRules).forEach(([name, conf]) => {
96
if (conf.severity) {
97
- configuredRules['ember-template-lint/' + name] = configuredRules['ember-template-lint/' + name] || []
+ configuredRules['ember-template-lint/' + name] = configuredRules['ember-template-lint/' + name] || [];
98
configuredRules['ember-template-lint/' + name].push(conf.severity);
99
if (typeof conf.config !== 'boolean') {
100
configuredRules['ember-template-lint/' + name].push(conf.config);
0 commit comments