Skip to content

Commit 3c65cef

Browse files
committed
template-lint: Use octane preset
with a few rules disabled for now until we can comply with them...
1 parent 82e3c47 commit 3c65cef

File tree

1 file changed

+6
-2
lines changed

1 file changed

+6
-2
lines changed

.template-lintrc.js

Lines changed: 6 additions & 2 deletions
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)