-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.eslintrc
37 lines (37 loc) · 1.13 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
{
"parser": "@typescript-eslint/parser",
"extends": ["prettier"],
"plugins": ["prettier"],
"env": {
"node": true
},
"parserOptions": {
"ecmaVersion": 2020,
"ecmaFeatures": {
"legacyDecorators": true
}
},
"settings": {},
"rules": {
"space-before-function-parent": 0,
// "import/export": 1,
"camelcase": 1,
"no-new": 0,
"no-prototype-builtins": 0,
"import/no-default-export": 0,
// "import/no-cycle": 1,
// "@typescript-eslint/no-unused-vars": [
// "warn",
// { "ignoreRestSiblings": true, "args": "none" }
// ],
"@typescript-eslint/no-explicit-any": 0,
"@typescript-eslint/no-empty-function": 0,
"@typescript-eslint/explicit-function-return-type": 0,
"@typescript-eslint/no-var-requires": 0,
"@typescript-eslint/ban-ts-ignore": 0,
"@typescript-eslint/ban-types": 0,
"@typescript-eslint/ban-ts-comment": 0
// warning Argument 'args' should be typed with a non-any type @typescript-eslint/explicit-module-boundary-types
// warning 'title' PropType is defined but prop is never used react/no-unused-prop-types
}
}