forked from cncjs/cncjs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.eslintrc.js
37 lines (36 loc) · 917 Bytes
/
.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
const path = require('path');
module.exports = {
extends: 'trendmicro',
parser: 'babel-eslint',
env: {
browser: true,
node: true
},
settings: {
'import/resolver': {
webpack: {
config: {
resolve: {
modules: [
path.resolve(__dirname, 'src'),
'node_modules'
],
extensions: ['.js', '.jsx']
}
}
}
}
},
rules: {
'max-lines-per-function': [1, {
max: 512,
skipBlankLines: true,
skipComments: true
}],
'react/jsx-no-bind': [1, {
allowArrowFunctions: true
}],
'react/prefer-stateless-function': 0,
'react/no-access-state-in-setstate': 0
}
};