forked from getsan4u/loan-origination-system
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.eslintrc.json
35 lines (35 loc) · 808 Bytes
/
.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
{
"extends": "eslint:recommended",
"plugins": [],
"parserOptions": {
"ecmaVersion": 2017,
"ecmaFeatures": {
"ecmaVersion": 2017,
"jsx": true
}
},
"ecmaFeatures": {
"ecmaVersion": 2017
},
"rules": {
"jsx-quotes": ["error", "prefer-double"],
"indent": ["error", 2, { "SwitchCase": 1 }],
"quotes": ["error", "single"],
"semi": ["warn", "always"],
"comma-dangle": ["warn", "always"],
"comma-spacing": "warn",
"object-curly-spacing": ["error", "always"],
"eqeqeq": "warn",
"no-cond-assign": ["warn", "always"],
"no-unused-vars": "warn",
"no-console": "warn",
"brace-style": ["warn", "1tbs"],
"strict": ["error", "safe"]
},
"env": {
"browser": true,
"commonjs": true,
"es6": true,
"node": true
}
}