forked from globocom/megadraft
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.eslintrc
45 lines (44 loc) · 1.17 KB
/
.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
40
41
42
43
44
45
{
"parser": "babel-eslint",
"rules": {
"react/jsx-uses-react": 2,
"react/jsx-uses-vars": 2,
"react/react-in-jsx-scope": 2,
"curly": [2],
"object-curly-spacing": ["error", "never"],
"indent": [2, 2, {"SwitchCase": 1}],
"quotes": [2, "double"],
"linebreak-style": [2, "unix"],
"semi": [2, "always"],
"no-unused-vars": [2, {"vars": "all", "args": "none"}],
"no-console": [0],
"no-trailing-spaces": ["error", {"skipBlankLines": false}],
"no-tabs": 2,
"no-duplicate-imports": 2,
"no-debugger": 2,
"no-var": 2,
"no-multiple-empty-lines": [2, {"max": 2}],
"no-multi-spaces": 2,
"camelcase": 2,
"mocha/no-exclusive-tests": "error"
},
"env": {
"es6": true,
"browser": true,
"node": true,
"mocha": true
},
"extends": "eslint:recommended",
"parserOptions": {
"ecmaVersion": 6,
"sourceType": "module",
"ecmaFeatures": {
"jsx": true,
"experimentalObjectRestSpread": true
}
},
"plugins": [
"react",
"mocha"
]
}