-
-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy path.template-lintrc.js
85 lines (82 loc) · 1.68 KB
/
.template-lintrc.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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
'use strict';
module.exports = {
extends: 'octane',
rules: {
'no-bare-strings': false
},
pending: [
{
"moduleId": "webmarks/components/bookmark-form/template",
"only": [
"no-action",
"no-curly-component-invocation",
"no-implicit-this",
"require-button-type"
]
},
{
"moduleId": "webmarks/components/bookmark-item/template",
"only": [
"link-rel-noopener",
"no-curly-component-invocation",
"no-implicit-this"
]
},
{
"moduleId": "webmarks/components/bookmark-search/template",
"only": [
"no-action",
"no-curly-component-invocation",
"no-implicit-this",
"require-button-type"
]
},
{
"moduleId": "webmarks/components/nav-app-info/template",
"only": [
"no-curly-component-invocation"
]
},
{
"moduleId": "webmarks/templates/about",
"only": [
"no-implicit-this",
"require-valid-alt-text"
]
},
{
"moduleId": "webmarks/templates/application",
"only": [
"link-href-attributes",
"no-action",
"no-implicit-this"
]
},
{
"moduleId": "webmarks/templates/archive/edit",
"only": [
"no-action",
"no-implicit-this"
]
},
{
"moduleId": "webmarks/templates/archive/index",
"only": [
"no-implicit-this"
]
},
{
"moduleId": "webmarks/templates/archive/new",
"only": [
"no-action",
"no-implicit-this"
]
},
{
"moduleId": "webmarks/templates/privacy",
"only": [
"no-implicit-this"
]
}
]
};