-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy path.eslintrc
32 lines (32 loc) · 871 Bytes
/
.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
{
"extends": "airbnb-typescript",
"parser": "@typescript-eslint/parser",
"plugins": [
"import",
"@typescript-eslint/eslint-plugin"
],
"globals": {
"window": true,
"document": true
},
"rules": {
"@typescript-eslint/dot-notation": 0,
"@typescript-eslint/no-implied-eval": 0,
"@typescript-eslint/no-throw-literal": 0,
"@typescript-eslint/return-await": 0,
"@typescript-eslint/semi": 0,
"@typescript-eslint/indent": 0,
"react/prop-types": 0,
"react/react-in-jsx-scope": 0,
"react/jsx-props-no-spreading": 0,
"react/jsx-filename-extension": 0,
"react/jsx-curly-newline": 0,
"react/jsx-one-expression-per-line": 0,
"import/no-extraneous-dependencies": 0,
"import/no-unresolved": 0,
"import/extensions": 0,
"object-curly-newline": 0,
"default-case": 0,
"no-plusplus": 0
}
}