-
Notifications
You must be signed in to change notification settings - Fork 1
/
.eslintrc
54 lines (54 loc) · 1.36 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
46
47
48
49
50
51
52
53
54
{
"root": true,
"parser": "@typescript-eslint/parser",
"parserOptions": {
"ecmaVersion": 10,
"ecmaFeatures": {
"jsx": false
}
},
"extends": [
"plugin:import/recommended",
"plugin:import/typescript",
"prettier",
"prettier/@typescript-eslint"
],
"plugins": ["@typescript-eslint/eslint-plugin", "testing-library"],
"env": {
"es6": true,
"browser": true,
"node": true
},
"rules": {
"@typescript-eslint/ban-ts-comment": "off",
"@typescript-eslint/no-use-before-define": "off",
"no-param-reassign": "off",
"no-console": "off",
"import/prefer-default-export": "off",
"no-underscore-dangle": "off",
"no-shadow": "off",
"spaced-comment": "off",
"guard-for-in": "off",
"operator-assignment": "off",
"prefer-destructuring": "off",
"consistent-return": "off",
"no-restricted-syntax": "off",
"no-continue": "off",
"@typescript-eslint/dot-notation": "off",
"no-bitwise": "off",
"no-redeclare": "off",
"@typescript-eslint/naming-convention": "off",
"import/no-extraneous-dependencies": "off",
"@typescript-eslint/lines-between-class-members": "off",
"no-alert": "off",
"@typescript-eslint/no-shadow": "off"
},
"overrides": [
{
"files": ["*.ts", "*.tsx"],
"parserOptions": {
"project": ["tsconfig.json"]
}
}
]
}