-
Notifications
You must be signed in to change notification settings - Fork 10
/
.eslintrc
28 lines (28 loc) · 1 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
{
"parser": "@typescript-eslint/parser",
"extends": [
"react-app",
"prettier",
"prettier/react",
"plugin:@typescript-eslint/eslint-recommended",
"plugin:@typescript-eslint/recommended"
],
"env": {
"browser": true
},
"globals": {},
"plugins": ["prettier", "@typescript-eslint"],
"rules": {
"prettier/prettier": 1,
"@typescript-eslint/member-delimiter-style": 0,
"@typescript-eslint/camelcase": 0,
"@typescript-eslint/ban-types": "off", //work to remove this
"@typescript-eslint/ban-ts-comment": "off", //work to remove this
"@typescript-eslint/no-explicit-any": "off", //work to remove this
"@typescript-eslint/no-non-null-assertion": "off", //work to remove this
"@typescript-eslint/explicit-module-boundary-types": "off", //work to remove this
"@typescript-eslint/no-redeclare": "off", //work to remove this
"import/no-anonymous-default-export": "off", //work to remove this
"react-hooks/exhaustive-deps": "off" //work to remove this
}
}