forked from gaearon/react-dnd-touch-backend
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.eslintrc
70 lines (70 loc) · 2.06 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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
{
"env": {
"browser": true,
"node": true,
"es6": true
},
"parser": "babel-eslint",
"plugins": [ "react" ],
"parserOptions": {
"ecmaVersion": 6,
"sourceType": "module",
"ecmaFeatures": {
"jsx": true,
"experimentalObjectRestSpread": true
}
},
"rules": {
"block-scoped-var": 2,
"camelcase": 2,
"comma-dangle": [2, "never"],
"comma-spacing": [2, { "before": false, "after": true }],
"comma-style": [2, "last"],
"complexity": 0,
"curly": [2, "all"],
"dot-notation": 0,
"eqeqeq": [2, "allow-null"],
"global-strict": 0,
"guard-for-in": 2,
"indent": 2,
"jsx-quotes": [2, "prefer-double"],
"key-spacing": [2, { "beforeColon": false, "afterColon": true }],
"keyword-spacing": ["error"],
"max-depth": 0,
"max-len": [2, 120, 4, { "ignoreComments": true, "ignoreUrls": true }],
"max-params": 0,
"max-statements": 0,
"new-cap": 0,
"no-bitwise": 0,
"no-caller": 2,
"no-cond-assign": 0,
"no-constant-condition": 2,
"no-debugger": 0,
"no-empty": 0,
"no-eval": 0,
"no-iterator": 0,
"no-loop-func": 0,
"no-mixed-spaces-and-tabs": [2, "smart-tabs"],
"no-multi-str": 0,
"no-new": 0,
"no-plusplus": 0,
"no-proto": 0,
"no-script-url": 0,
"no-shadow": 0,
"no-trailing-spaces": 0,
"no-undef": 2,
"no-unused-vars": [2, {"vars": "all", "args": "none"}],
"no-use-before-define": [2, "nofunc"],
"padded-blocks": [2, "never"],
"quotes": [2, "single"],
"react/jsx-uses-react": 2,
"react/jsx-uses-vars": 2,
"react/no-did-update-set-state": 2,
"react/no-direct-mutation-state": 2,
"react/no-is-mounted": 2,
"react/prefer-stateless-function": 2,
"spaced-comment": [2, "always"],
"strict": 0,
"wrap-iife": [2, "inside"]
}
}