forked from cmswalker/fullpage-react
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.eslintrc.json
68 lines (67 loc) · 1.43 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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
{
"env": {
"es6": true,
"node": true,
"browser": true
},
"extends": ["eslint:recommended", "plugin:react/recommended"],
"installedESLint": true,
"parserOptions": {
"ecmaVersion": 6,
"ecmaFeatures": {
"experimentalObjectRestSpread": true,
"jsx": true
},
"sourceType": "module"
},
"plugins": [
"react"
],
"globals": {
},
"rules": {
"indent": [
0,
"tab"
],
"linebreak-style": [
"error",
"unix"
],
"quotes": [
"error",
"single"
],
"semi": [
0,
"never"
],
"curly": 2,
"dot-notation": 0,
"comma-style": [
2,
"last"
],
"no-unused-expressions": 2,
"no-unused-vars": [
"error",
{
"vars": "all",
"args": "after-used",
"varsIgnorePattern": "config|MRError"
}
],
"no-trailing-spaces": "error",
"brace-style": "error",
"keyword-spacing": ["error", { "after": true, "before": true }],
"comma-dangle": ["error", "never"],
"no-console": ["error", {"allow": ["warn", "error", "origin"]}],
"no-debugger": "error",
"no-unreachable": "error",
"no-dupe-args": "error",
"no-dupe-keys": "error",
"no-func-assign": "error",
"no-sparse-arrays": "error",
"space-before-blocks": "error"
}
}