-
Notifications
You must be signed in to change notification settings - Fork 1
/
.eslintrc
executable file
·44 lines (44 loc) · 997 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
33
34
35
36
37
38
39
40
41
42
43
44
{
"extends": [
"prettier",
"plugin:import/errors"
],
"parserOptions": {
"ecmaVersion": "latest"
},
"env": {
"es6": true,
"node": true
},
"plugins": [
"prettier"
],
"rules": {
"import/no-named-as-default": "off",
"import/prefer-default-export": "off",
"prettier/prettier": "error",
"arrow-body-style": "off",
"import/extensions": "off",
"import/no-unresolved": "off",
"no-param-reassign": "off",
"no-underscore-dangle": "off",
"import/named": "off"
},
"settings": {
"import/resolver": {
"node": {
"extensions": [
".ts",
".tsx",
".js",
".jsx",
".mjs"
],
"paths": [
"./",
"src"
]
}
}
}
}