-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.hintrc
46 lines (46 loc) · 748 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
{
"extends": [
"development"
],
"hints": {
"axe/forms": [
"default",
{
"label": "off",
"select-name": "off"
}
],
"compat-api/css": [
"default",
{
"ignore": [
"backdrop-filter",
"user-select",
"accent-color"
]
}
],
"detect-css-reflows/composite": "off",
"axe/name-role-value": [
"default",
{
"link-name": "off"
}
],
"axe/keyboard": [
"default",
{
"nested-interactive": "off"
}
],
"button-type": "off",
"axe/structure": [
"default",
{
"list": "off",
"listitem": "off"
}
],
"no-inline-styles": "off"
}
}