This repository has been archived by the owner on Nov 28, 2023. It is now read-only.
forked from gaearon/react-dnd-touch-backend
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.eslintrc
63 lines (63 loc) · 1.81 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
{
"env": {
"browser": true,
"node": true,
"es6": true
},
"parser": "babel-eslint",
"plugins": [ "react" ],
"parserOptions": {
"ecmaFeatures": {
"jsx": true,
"modules": 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": 2,
"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", "varsIgnorePattern": "^[rR]eact"}],
"no-use-before-define": [2, "nofunc"],
"padded-blocks": [2, "never"],
"quotes": [2, "single"],
"semi": [2, "always"],
"spaced-comment": [2, "always"],
"strict": 0,
"wrap-iife": [2, "inside"]
}
}