-
Notifications
You must be signed in to change notification settings - Fork 0
/
.eslintrc.js
executable file
·66 lines (60 loc) · 1.8 KB
/
.eslintrc.js
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
module.exports = {
"parser": "babel-eslint",
"extends": ["eslint:recommended", "plugin:react/recommended"],
"parserOptions": {
"ecmaVersion": 6,
"sourceType": "module",
"ecmaFeatures": {
"impliedStrict": true,
"jsx": true
}
},
"env": {
"browser": true,
"node": true,
"es6": true,
"mocha": true,
"jquery": true
},
"plugins": [
"react"
],
"globals": {
"define": true
},
"rules": {
"strict": ["error", "global"],
"no-unused-vars": ["error", { "vars": "all", "args": "all", "caughtErrors": "none" }],
"no-console": ["error", { allow: ["warn", "error"] }],
"camelcase": ["error", { "properties": "always" }],
"consistent-return": "error",
"arrow-spacing": "error",
"arrow-parens": ["error", "always"],
"arrow-body-style": ["error", "as-needed"],
"semi": ["error", "always"],
"no-confusing-arrow": ["error", { "allowParens": false }],
"no-constant-condition": "error",
"no-labels": "error",
"no-multiple-empty-lines": ["error", { max: 1, maxEOF: 1 }],
"func-style": "off",
"react/wrap-multilines": "error",
"react/forbid-prop-types": ["error", { "forbid": ["any"] }],
"react/jsx-boolean-value": "warn",
"react/jsx-closing-bracket-location": "off",
"react/jsx-curly-spacing": "warn",
"react/jsx-indent-props": "off",
"react/jsx-key": "warn",
"react/jsx-max-props-per-line": "off",
"react/jsx-no-bind": "off",
"react/jsx-no-literals": "off",
"react/jsx-pascal-case": "warn",
"react/jsx-sort-prop-types": "off",
"react/jsx-sort-props": "off",
"react/no-multi-comp": "warn",
"react/no-set-state": "off",
"react/prefer-es6-class": "warn",
"react/require-extension": "warn",
"react/self-closing-comp": "warn",
"react/sort-comp": "warn"
}
}