forked from ucscXena/ucsc-xena-client
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.eslintrc
55 lines (55 loc) · 1.22 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
{
"env": {
"browser": true,
"node": true,
"es6": true
},
"plugins": [
"react"
],
"ecmaFeatures": {
"jsx": true
},
"parser": "babel-eslint",
"rules": {
"arrow-spacing": 2,
"camelcase": 2,
"dot-notation": [2, { "allowKeywords": true }],
"eol-last": 2,
"eqeqeq": [2, "allow-null"],
"curly": 2,
"key-spacing": 2,
"new-cap": [2, { "capIsNew": false }],
"no-dupe-keys": 2,
"no-extra-bind": 2,
"no-extra-boolean-cast": 2,
"no-trailing-spaces": 2,
"no-use-before-define": 2,
"space-infix-ops": 2,
"space-before-blocks": 2,
"yoda": 0,
"no-extra-parens": [2, "functions"],
"comma-spacing": 2,
"no-undef": 2,
"no-redeclare": [2, {"builtinGlobals": true}],
"no-underscore-dangle": 0,
"no-mixed-spaces-and-tabs": 0,
"no-multi-spaces": 0,
"no-extra-strict": 0,
"strict": [2, "global"],
"no-console": 0,
"quotes": 0,
"no-shadow": 0,
"no-unused-vars": [2, {"vars": "local"}],
"react/jsx-no-undef": 1,
"react/jsx-uses-react": 1,
"react/jsx-uses-vars": 1,
"react/no-did-mount-set-state": 1,
"react/no-did-update-set-state": 1,
"react/no-unknown-property": 1,
"react/react-in-jsx-scope": 1,
"react/self-closing-comp": 1,
"react/wrap-multilines": 1,
semi: [2, "always"]
}
}