-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.hintrc
33 lines (33 loc) · 894 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
{
"extends": ["development"],
"browserslist": [
"defaults",
"not ie 11",
"not ie <= 10",
"not and_ff <= 119",
"not firefox <= 121",
"not opera <= 104"
],
"hints": {
"typescript-config/is-valid": "off",
"compat-api/css": [
"default",
{
"ignore": [
"backdrop-filter",
"font-smooth",
"overflow: clip",
"overscroll-behavior",
"text-size-adjust",
"user-select",
"-webkit-text-size-adjust"
]
}
],
"no-inline-styles": "off",
"typescript-config/strict": "off",
"typescript-config/consistent-casing": "off",
"disown-opener": "off",
"manifest-is-valid": "off"
}
}