-
Notifications
You must be signed in to change notification settings - Fork 29
/
.eslintrc
45 lines (45 loc) · 1.45 KB
/
.eslintrc
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
{
"root": true,
"extends": [
"eslint:recommended",
"plugin:@typescript-eslint/recommended",
"plugin:prettier/recommended",
"plugin:react/recommended",
"plugin:react-hooks/recommended",
"plugin:require-extensions/recommended"
],
"parser": "@typescript-eslint/parser",
"plugins": ["@typescript-eslint", "prettier", "react", "react-hooks", "require-extensions"],
"settings": {
"react": {
"version": "detect"
}
},
"rules": {
"@typescript-eslint/ban-ts-comment": "off",
"@typescript-eslint/no-explicit-any": "off",
"@typescript-eslint/no-unused-vars": "warn",
"@typescript-eslint/no-empty-interface": "off",
"@typescript-eslint/consistent-type-imports": "error",
"react/no-unescaped-entities": ["error", { "forbid": [">"] }]
},
"overrides": [
{
"files": ["demos/**/*"],
"rules": {
"require-extensions/require-extensions": "off",
"react/react-in-jsx-scope": "off",
"@typescript-eslint/no-unused-vars": "off"
}
},
{
"files": ["packages/vue/**/*"],
"rules": {
"react-hooks/rules-of-hooks": "off",
"react-hooks/exhaustive-deps": "off",
"react/react-in-jsx-scope": "off",
"react/no-unknown-property": "off"
}
}
]
}