-
Notifications
You must be signed in to change notification settings - Fork 143
/
.eslintrc.js
127 lines (127 loc) · 2.91 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
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
module.exports = {
parser: 'babel-eslint',
parserOptions: {
ecmaFeatures: {
generators: true,
experimentalObjectRestSpread: true
},
sourceType: 'module',
allowImportExportEverywhere: false
},
plugins: ['flowtype'],
extends: ['airbnb', 'plugin:flowtype/recommended'],
settings: {
flowtype: {
onlyFilesWithFlowAnnotation: true
}
},
globals: {
window: true,
document: true,
__dirname: true,
__DEV__: true,
CONFIG: true,
process: true,
jest: true,
describe: true,
test: true,
it: true,
expect: true,
beforeEach: true
},
'import/resolver': {
node: {
extensions: ['.js', '.css', '.json', '.styl']
}
},
'import/extensions': ['.js'],
'import/ignore': ['node_modules', 'flow-typed', '\\.(css|styl|svg|json)$'],
rules: {
'no-shadow': 0,
'no-use-before-define': 0,
'no-param-reassign': 0,
'react/prop-types': 0,
'react/no-render-return-value': 0,
'no-confusing-arrow': 0,
'no-underscore-dangle': 0,
'no-plusplus': 0,
camelcase: 1,
'prefer-template': 1,
'react/no-array-index-key': 1,
'global-require': 1,
'react/jsx-indent': 1,
'dot-notation': 1,
'import/no-named-default': 1,
'no-unused-vars': 1,
'import/no-unresolved': 1,
'flowtype/no-weak-types': 1,
'consistent-return': 1,
'no-nested-ternary': 1,
'no-return-assign': 1,
'no-continue': 1,
semi: [2, 'never'],
'no-console': [2, { allow: ['warn', 'error'] }],
'flowtype/semi': [2, 'never'],
'jsx-quotes': [2, 'prefer-single'],
'react/jsx-filename-extension': [2, { extensions: ['.jsx', '.js'] }],
'spaced-comment': [2, 'always', { markers: ['?'] }],
'arrow-parens': [2, 'as-needed', { requireForBlockBody: false }],
'brace-style': [2, 'stroustrup'],
'no-unused-expressions': [
2,
{
allowShortCircuit: true,
allowTernary: true,
allowTaggedTemplates: true
}
],
'import/no-extraneous-dependencies': [
'error',
{
devDependencies: true,
optionalDependencies: true,
peerDependencies: true
}
],
'comma-dangle': [
2,
{
arrays: 'never',
objects: 'never',
imports: 'never',
exports: 'never',
functions: 'never'
}
],
'max-len': [
'error',
{
code: 80,
tabWidth: 2,
ignoreUrls: true,
ignoreComments: true,
ignoreRegExpLiterals: true,
ignoreStrings: true,
ignoreTemplateLiterals: true
}
],
'react/sort-comp': [
2,
{
order: [
'propTypes',
'props',
'state',
'defaultProps',
'contextTypes',
'childContextTypes',
'getChildContext',
'static-methods',
'lifecycle',
'everything-else',
'render'
]
}
]
}
}