forked from Dev-Dawgz/resolution
-
Notifications
You must be signed in to change notification settings - Fork 4
/
.eslintrc
39 lines (38 loc) · 874 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
{
"env": {
"es6": true,
"node": true,
"browser": true
},
"parserOptions": {
"sourceType": "module",
"ecmaVersion": 2021,
"ecmaFeatures": {
"jsx": true
}
},
"ignorePatterns": [".eslint*", "dist", "node_modules"],
"rules": {
"eol-last": "error",
"no-mixed-spaces-and-tabs": 2,
"offsetTernaryExpressions": 0,
"indent": [2, 2],
"camelcase": 0,
"curly": 2,
"func-style": [2, "expression"],
"no-var": 2,
"prefer-const": 2,
"semi": 2,
"no-extra-semi": 2,
"brace-style": [2, "1tbs", { "allowSingleLine": true }],
"semi-spacing": 1,
"key-spacing": 1,
"block-spacing": 1,
"comma-spacing": 1,
"no-multi-spaces": 1,
"space-before-blocks": 1,
"keyword-spacing": [1, { "before": true, "after": true }],
"space-infix-ops": 1,
"comma-style": [2, "last"]
}
}