-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.eslintrc.json
More file actions
35 lines (35 loc) · 730 Bytes
/
.eslintrc.json
File metadata and controls
35 lines (35 loc) · 730 Bytes
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
{
"parser": "@typescript-eslint/parser",
"env": {
"jest/globals": true
},
"settings": {
"import/resolver": {
"node": {
"extensions": [
".js",
".ts"
]
}
}
},
"plugins": [
"@typescript-eslint",
"prettier",
"jest"
],
"extends": [
"prettier",
"plugin:@typescript-eslint/recommended",
"plugin:jest/recommended"
],
"rules": {
"@typescript-eslint/interface-name-prefix": "off",
"@typescript-eslint/no-namespace": "off",
"@typescript-eslint/camelcase": "off",
"prettier/prettier": "error",
"import/extensions": "off",
"import/prefer-default-export": "off",
"import/no-extraneous-dependencies": "off"
}
}