forked from nicksp/redux-webpack-es6-boilerplate
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.eslintrc.js
99 lines (88 loc) · 3.03 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
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
module.exports = {
"parser": "babel-eslint",
"extends": ["eslint:recommended", "plugin:react/recommended"],
"parserOptions": {
"ecmaVersion": 6,
"sourceType": "module",
"ecmaFeatures": {
"impliedStrict": true,
"jsx": true,
"experimentalObjectRestSpread": true
}
},
"env": {
"browser": true,
"node": true,
"es6": true,
"mocha": true
},
"plugins": [
"react",
"flowtype"
],
"globals": {
"define": true
},
"settings": {
"flowtype": {
"onlyFilesWithFlowAnnotation": 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",
// ESLint-plugin-React
// https://github.com/yannickcr/eslint-plugin-react
"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/jsx-wrap-multilines": "error",
"react/no-multi-comp": "warn",
"react/no-set-state": "off",
"react/prefer-es6-class": "warn",
"react/self-closing-comp": "warn",
"react/sort-comp": "warn",
"react/sort-prop-types": "warn",
// ESLint-plugin-Flowtype
// https://github.com/gajus/eslint-plugin-flowtype#configuration
// marks Flow type identifiers as defined
'flowtype/define-flow-type': "error",
// requires that all function parameters have type annotations
'flowtype/require-parameter-type': "off",
// requires that functions have return type annotation
'flowtype/require-return-type': "off",
// makes sure that files have a valid @flow annotation
'flowtype/require-valid-file-annotation': "error",
// enforces consistent spacing after the type annotation colon
'flowtype/space-after-type-colon': ["error", 'always'],
// enforces consistent spacing before the type annotation colon
'flowtype/space-before-type-colon': ["error", 'never'],
// enforces a consistent naming pattern for type aliases
'flowtype/type-id-match': "off",
// marks Flow type alias declarations as used
'flowtype/use-flow-type': "off",
// checks for simple Flow syntax errors
'flowtype/valid-syntax': "error"
}
};