forked from flux3dp/flux-studio
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.eslintrc.json
101 lines (101 loc) · 2.66 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
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
{
"env": {
"browser": true,
"commonjs": true,
"es6": true,
"node": true,
"mocha": true,
"builtin": true
},
"parser": "babel-eslint",
"parserOptions": {
"ecmaFeatures": {
"jsx": true
},
"sourceType": "module"
},
"plugins": [
"react"
],
"globals": {
"$": false,
"moment": false,
"interact": false,
"i18n": false,
"Cookies": false,
"Highcharts": false,
"_": false
},
"rules": {
"indent": ["error", 4, { "SwitchCase": 1 }],
"no-dupe-keys": 2,
"block-scoped-var": 0,
"camelcase": 0,
"comma-style": 2,
"curly": [2, "all"],
"dot-notation": 0,
"eqeqeq": [2, "allow-null"],
"global-strict": [0, "never"],
"guard-for-in": 2,
"key-spacing": 0,
"new-cap": 0,
"no-bitwise": 0,
"no-useless_computed-key": 0,
"no-caller": 2,
"no-cond-assign": [2, "except-parens"],
"no-debugger": 2,
"no-empty": 2,
"no-eval": 2,
"no-extend-native": 2,
"no-extra-parens": 0,
"no-extra-strict": 0,
"no-irregular-whitespace": 2,
"no-iterator": 2,
"no-loop-func": 2,
"no-multi-spaces": 0,
"no-multi-str": 0,
"no-mixed-spaces-and-tabs": 0,
"no-new": 2,
"no-plusplus": 0,
"no-proto": 2,
"no-script-url": 2,
"no-sequences": 2,
"no-shadow": 1,
"no-undef": 0,
"no-underscore-dangle": 0,
"no-unused-vars": 1,
"no-unused-expressions": 0,
"no-use-before-define": 0,
"no-with": 2,
"quotes": [2, "single"],
"react/display-name": 0,
"react/jsx-boolean-value": 0,
"react/jsx-quotes": 0,
"react/jsx-no-undef": 1,
"react/jsx-sort-props": 0,
"react/jsx-sort-prop-types": 0,
"react/jsx-uses-react": 2,
"react/jsx-uses-vars": 2,
"react/no-did-mount-set-state": 2,
"react/no-did-update-set-state": 2,
"react/no-multi-comp": 2,
"react/no-unknown-property": 2,
"react/prop-types": 0,
"react/react-in-jsx-scope": 2,
"react/self-closing-comp": 2,
"react/sort-comp": [0, {
"order": [
"/^constructor$/",
"lifecycle",
"everything-else",
"render"
]
}],
"react/jsx-wrap-multilines": 2,
"semi": [2, "always"],
"strict": 2,
"space-unary-ops": 0,
"valid-typeof": 2,
"wrap-iife": [2, "inside"]
}
}