forked from ember-template-lint/ember-template-lint
-
Notifications
You must be signed in to change notification settings - Fork 0
/
recommended.js
43 lines (42 loc) · 1.35 KB
/
recommended.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
'use strict';
module.exports = {
rules: {
'deprecated-render-helper': 'error',
'link-rel-noopener': ['error', 'strict'],
'link-href-attributes': 'error',
'no-abstract-roles': 'error',
'no-args-paths': 'error',
'no-attrs-in-components': 'error',
'no-debugger': 'error',
'no-duplicate-attributes': 'error',
'no-extra-mut-helper-argument': 'error',
'no-html-comments': 'error',
'no-index-component-invocation': 'error',
'no-inline-styles': 'error',
'no-input-block': 'error',
'no-input-tagname': 'error',
'no-invalid-interactive': 'error',
'no-invalid-link-text': 'error',
'no-invalid-meta': 'error',
'no-invalid-role': 'error',
'no-log': 'error',
'no-negated-condition': 'error',
'no-nested-interactive': 'error',
'no-obsolete-elements': 'error',
'no-outlet-outside-routes': 'error',
'no-partial': 'error',
'no-positive-tabindex': 'error',
'no-quoteless-attributes': 'error',
'no-shadowed-elements': 'error',
'no-triple-curlies': 'error',
'no-unbound': 'error',
'no-unnecessary-component-helper': 'error',
'no-unused-block-params': 'error',
'require-button-type': 'error',
'require-iframe-title': 'error',
'require-valid-alt-text': 'error',
'simple-unless': 'error',
'style-concatenation': 'error',
'table-groups': 'error',
},
};