-
Notifications
You must be signed in to change notification settings - Fork 8
/
.eslintrc
101 lines (86 loc) · 2.57 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
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
{
"extends": "eslint-config-airbnb",
"parserOptions": {
"ecmaVersion": 6,
"sourceType": "module",
"ecmaFeatures": {
"jsx": true
}
},
"parser": "babel-eslint",
"env": {
"browser": true,
"node": true,
"mocha": true,
"es6": true
},
"plugins": [
"import",
"react",
"dependencies"
],
"globals": {
"__CLIENT__": true,
"__SERVER__": true,
"__DEVELOPMENT__": true,
"__DISABLE_SSR__": true
},
"rules": {
//Possible Errors
"no-console": "error",
"no-unexpected-multiline": "error",
// Best Practices
"class-methods-use-this": "off",
"consistent-return": ["error", { "treatUndefinedAsUnspecified": true }],
"dot-location": ["error", "property"],
"no-implicit-globals": "error",
"no-invalid-this": "error",
"no-param-reassign": ["error", { "props": false }],
"no-unmodified-loop-condition": "error",
"no-useless-call": "error",
"no-void": "off",
// Variables
"no-catch-shadow": "error",
"no-label-var": "error",
"no-shadow": ["error", { "allow": ["cb", "next", "req", "res", "err", "error"] }],
"no-undef-init": "error",
"no-undefined": "error",
"no-use-before-define": ["error", "nofunc"],
"no-unused-expressions": ["error", { "allowShortCircuit": true }],
"no-unused-vars": ["error", { "args": "none" }],
// Node.js
"callback-return": "error",
"no-path-concat": "error",
// Stylistic Issues
"comma-dangle": ["error", "always-multiline"],
"linebreak-style": ["error", "unix"],
"no-plusplus": "off",
// ECMAScript 6
"arrow-parens": ["error", "always"],
"constructor-super": "error",
"generator-star-spacing": ["error", "after"],
"no-this-before-super": "error",
"prefer-arrow-callback": ["error", { "allowNamedFunctions": true }],
"prefer-spread": "error",
"prefer-template": "off",
// React
"react/forbid-prop-types": "off",
"react/no-danger": "error",
"react/no-direct-mutation-state": "error",
"react/no-set-state": "error",
"react/no-unused-prop-types": "off",
"react/prefer-stateless-function": "off",
"react/prop-types": "off",
"react/self-closing-comp": "off",
// JSX
"react/jsx-filename-extension": ["error", { "extensions": [".js", ".jsx"] }],
"react/jsx-key": "error",
"react/jsx-max-props-per-line": ["error", {"maximum": 3}],
// dependencies
"dependencies/case-sensitive": "error",
"dependencies/no-cycles": "error",
"dependencies/no-unresolved": "error",
// coding styles
"max-len": ["error", 100]
}
}