-
Notifications
You must be signed in to change notification settings - Fork 0
/
.eslintrc
40 lines (39 loc) · 1.02 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
{
"env": {
"commonjs": true,
"node": true,
"es6": true
},
"parser": "@typescript-eslint/parser",
"parserOptions": {
"ecmaVersion": 2020,
"sourceType": "module"
},
"plugins": [
"simple-import-sort"
],
"extends": [
"plugin:@typescript-eslint/recommended",
"plugin:prettier/recommended"
],
"rules": {
"arrow-body-style": ["error", "as-needed"],
"complexity": ["warn", 16],
"template-curly-spacing": "off",
"indent": "off",
"default-case": 0,
"max-len": [
"error",
{
"code": 160,
"ignoreComments": true
}
],
"no-console": ["error", { "allow": ["warn", "error"] }],
"no-unused-vars": "off",
"@typescript-eslint/no-unused-vars": ["warn", { "argsIgnorePattern": "^_" }],
"prefer-spread": "error",
"prettier/prettier": ["error"],
"simple-import-sort/imports": "error"
}
}