-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.hintrc
55 lines (55 loc) · 1015 Bytes
/
.hintrc
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
{
"extends": ["development"],
"hints": {
"axe/text-alternatives": "off",
"axe/name-role-value": "off",
"axe/structure": "off",
"disown-opener": "off",
"no-inline-styles": "off",
"button-type": "off",
"compat-api/css": [
"default",
{
"ignore": [
"width: fit-content",
"backdrop-filter",
"overflow-clip-margin",
"overflow: clip"
]
}
],
"axe/parsing": [
"default",
{
"duplicate-id": "off",
"empty-heading": "warn"
}
],
"custom-rule-1": "error",
"custom-rule-2": "warn",
"custom-rule-3": "off",
"grouped-rules": [
"default",
{
"rule-1": "off",
"rule-2": "warn"
}
]
},
"ignore": [
"node_modules/",
"build/"
],
"parserOptions": {
"ecmaVersion": 2021,
"sourceType": "module"
},
"overrides": [
{
"files": ["js/script.js"],
"env": {
"jest": true
}
}
]
}