forked from OperationCode/operationcode_frontend
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy path.eslintrc
More file actions
29 lines (29 loc) · 677 Bytes
/
.eslintrc
File metadata and controls
29 lines (29 loc) · 677 Bytes
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
{
"extends": "airbnb",
"env": {
"browser": true,
"commonjs": true,
"es6": true,
"jest": true,
"node": true
},
"parser": "babel-eslint",
"rules": {
"comma-dangle": [1, "only-multiline"],
"react/jsx-filename-extension": [1, { "extensions": [".js", ".jsx"] }],
"react/prefer-stateless-function": 0,
"react/no-did-mount-set-state": 0,
"import/extensions": 0,
"import/no-extraneous-dependencies": 0,
"linebreak-style": 0,
"max-len": 0,
"react/jsx-max-props-per-line": 0
},
"settings": {
"import/resolver": {
"webpack": {
"config": "./config/webpack.config.dev.js"
}
}
}
}