-
Notifications
You must be signed in to change notification settings - Fork 0
/
.eslintrc.json
43 lines (43 loc) · 1.24 KB
/
.eslintrc.json
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
{
"env": {
"node": true,
"es2021": true
},
"plugins": ["simple-import-sort"],
"extends": ["eslint:recommended", "prettier"],
"parserOptions": {
"ecmaVersion": "latest",
"sourceType": "module"
},
"rules": {
"simple-import-sort/exports": "error",
"simple-import-sort/imports": "error",
"newline-before-return": "error",
"no-empty": "warn",
"no-cond-assign": ["error", "always"],
"no-multiple-empty-lines": "error",
"no-unreachable": "error",
"max-len": ["error", 120],
"indent": ["error", 2],
"linebreak-style": ["error", "unix"],
"quotes": ["error", "single"],
"semi": ["error", "always"],
"switch-colon-spacing": "error",
"arrow-spacing": "error",
"space-before-blocks": "error",
"keyword-spacing": ["error"],
"brace-style": ["error", "1tbs", { "allowSingleLine": false }],
"comma-spacing": ["error", { "before": false, "after": true }],
"object-curly-spacing": ["error", "always"],
"sort-imports": [
"error",
{
"ignoreCase": false,
"ignoreDeclarationSort": false,
"ignoreMemberSort": false,
"memberSyntaxSortOrder": ["none", "all", "single", "multiple"],
"allowSeparatedGroups": false
}
]
}
}