forked from Sienci-Labs/gsender
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.eslintrc.js
59 lines (58 loc) · 2.45 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
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: ['.ts', '.tsx', '.js', '.jsx', '.json'],
alias: {
// Alias paths so that e.g. "../../components/File" becomes "Components/File"
Actions: path.resolve(__dirname, './src/app/actions'),
Atoms: path.resolve(__dirname, './src/app/atoms'),
APIs: path.resolve(__dirname, './src/app/apis'),
Components: path.resolve(__dirname, './src/app/components'),
Containers: path.resolve(__dirname, './src/app/containers'),
Constants: path.resolve(__dirname, './src/app/constants'),
Contexts: path.resolve(__dirname, './src/app/contexts'),
Hooks: path.resolve(__dirname, './src/app/hooks'),
Images: path.resolve(__dirname, './src/app/images'),
Models: path.resolve(__dirname, './src/app/models'),
Reducers: path.resolve(__dirname, './src/app/reducers'),
Routes$: path.resolve(__dirname, './src/app/routes'),
Styles: path.resolve(__dirname, './src/app/styles'),
Types: path.resolve(__dirname, './src/app/types'),
Utils: path.resolve(__dirname, './src/app/utils'),
Views: path.resolve(__dirname, './src/app/views')
}
}
}
}
}
},
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,
'react/jsx-indent': 1,
"react/prop-types": 0,
"import/order": 0
}
};