forked from RoyalBingBong/meView
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.eslintrc
35 lines (35 loc) · 991 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
{
"env": {
"es6": true,
"browser": true,
"node": true
},
"extends": "eslint:recommended",
"parserOptions": {
"sourceType": "module"
},
"rules": {
"accessor-pairs": [1,{"getWithoutSet":true,"setWithoutGet":true}],
"default-case": 1,
"eqeqeq": [1,"smart"],
"no-floating-decimal": 1,
"no-multi-spaces": 1,
"no-path-concat": 1,
"array-bracket-spacing": [2,"never",{}],
"brace-style": [1,"1tbs",{}],
"eol-last": 2,
"key-spacing": 1,
"linebreak-style": [1,"windows"],
"no-array-constructor": 2,
"no-console": "off",
"no-multiple-empty-lines": [1,{"max":1}],
"no-unused-vars": "warn",
"no-trailing-spaces": [1,{"skipBlankLines":true, "ignoreComments": true}],
"quotes": [1,"double","avoid-escape"],
"space-before-blocks": [1,"always"],
"space-infix-ops": 1,
"spaced-comment": [1,"always",{}],
"arrow-parens": [1,"always"],
"arrow-spacing": [1,{"before":true,"after":true}]
}
}