Skip to content

Commit 9e0deb4

Browse files
committed
Auto merge of #2040 - Turbo87:template-lint, r=NullVoxPopuli
template-lint: Use `octane` preset with a few rules disabled for now until we can comply with them... The `no-curly-component-invocation` rule should in theory be able to run without issues but it currently seems to have a small bug that is causing false positives for us (see ember-template-lint/ember-template-lint#1026) r? @locks
2 parents e9f071e + 3c65cef commit 9e0deb4

File tree

1 file changed

+6
-2
lines changed

1 file changed

+6
-2
lines changed

.template-lintrc.js

+6-2
Original file line numberDiff line numberDiff line change
@@ -3,12 +3,16 @@
33
/* eslint-env node */
44

55
module.exports = {
6-
extends: 'recommended',
6+
extends: 'octane',
77

88
rules: {
9-
'img-alt-attributes': false,
9+
'require-valid-alt-text': false,
10+
'no-action': false,
11+
'no-curly-component-invocation': false,
1012
'no-html-comments': false,
13+
'no-implicit-this': false,
1114
'no-unnecessary-concat': false,
1215
quotes: false,
16+
'require-button-type': false,
1317
},
1418
};

0 commit comments

Comments
 (0)