forked from HMPO/hmpo-app
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.eslintrc
28 lines (28 loc) · 901 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
{
"env": {
"node": true,
"es6": true
},
"parserOptions": {
"ecmaVersion": 2018
},
"extends": "eslint:recommended",
"rules": {
"no-var": 2,
"prefer-arrow-callback": 2,
"no-unused-vars": [2, { "argsIgnorePattern": "^(err|req|res|next)$" }],
"no-mixed-requires": 2,
"quotes": [2, "single"],
"no-trailing-spaces": 2,
"indent": 2,
"linebreak-style": [2, "unix"],
"semi": [2, "always"],
"brace-style": [2, "1tbs", { "allowSingleLine": true }],
"keyword-spacing": 2,
"space-before-blocks": 2,
"space-before-function-paren": [2, { "anonymous": "always", "named": "never" }],
"no-mixed-spaces-and-tabs": 2,
"comma-spacing": [2, {"before": false, "after": true}],
"key-spacing": [2, {"beforeColon": false, "afterColon": true}]
}
}