-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy path.eslintrc.json
43 lines (43 loc) · 1.15 KB
/
.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
36
37
38
39
40
41
42
43
{
"env": {
"browser": true,
"commonjs": true,
"es6": true,
"mocha": true,
"node": true
},
"extends": ["eslint:recommended", "plugin:react/recommended"],
"parser": "babel-eslint",
"parserOptions": {
"ecmaVersion": 6,
"sourceType": "module",
"ecmaFeatures": {
"jsx": true
}
},
"plugins": [
"react"
],
"rules": {
"brace-style": [2, "1tbs", {"allowSingleLine": true}],
"comma-dangle": [2, "never"],
"import/extensions": 0,
"import/no-extraneous-dependencies": 0,
"indent": [2, 2],
"keyword-spacing": 2,
"linebreak-style": [2, "unix"],
"no-trailing-spaces": 2,
"quotes": [2, "single"],
"react/prefer-es6-class": 1,
"semi": [2, "always"],
"sort-imports": [2, {
"ignoreCase": true,
"ignoreMemberSort": false,
"memberSyntaxSortOrder": ["none", "all", "multiple", "single"]
}],
"space-before-function-paren": [2, "never"],
"space-infix-ops": [2, {"int32Hint": false}],
"spaced-comment": [2, "always"],
"strict": [2, "safe"]
}
}