forked from makeorbreak-io/mob-web
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.eslintrc
46 lines (39 loc) · 928 Bytes
/
.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
{
"env": {
"browser": true,
"node": true,
},
"globals": {
"Promise": true,
"process": true,
"Instascan": true
},
"parser": "babel-eslint",
"parserOptions": {
"ecmaFeatures": {
"jsx": true
}
},
"plugins": [
"react"
],
"extends": [
"eslint:recommended",
"plugin:react/recommended"
],
"rules": {
"comma-dangle": [ "error", "always-multiline" ],
"no-mixed-operators": "error",
// "indent": [ "error", 2, { "MemberExpression": 0 } ],
"linebreak-style": [ "error", "unix" ],
"no-console": ["warn", { "allow": ["error"] }],
"no-debugger": "warn",
"no-unused-vars": ["error", { "argsIgnorePattern": "^_" }],
"quotes": [ "error", "double" ],
"semi": [ "error", "always" ],
"react/jsx-uses-react": "error",
"react/jsx-uses-vars": "error",
"react/prop-types": "off",
"react/no-unescaped-entities": "off"
}
}