-
Notifications
You must be signed in to change notification settings - Fork 1
/
.eslintrc
50 lines (50 loc) · 1.24 KB
/
.eslintrc
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
{
"extends": [
"eslint:recommended",
"plugin:import/errors",
"plugin:import/warnings",
"airbnb"
],
"parser": "babel-eslint",
"parserOptions": {
"ecmaVersion": 6,
"ecmaFeatures": {
"jsx": true
}
},
"env": {
"browser": true,
"node": true,
"mocha": true,
"es6": true
},
"rules": {
"react/forbid-prop-types": "off",
"camelcase":"off",
"space-before-function-paren": "off",
"import/prefer-default-export": "off",
"func-names": "off",
"arrow-body-style": "off",
"import/no-extraneous-dependencies": ["error", {"devDependencies": true}]
},
"settings": {
"import/resolver": {
"alias": {
"map": [
["assets", "./app/assets"],
["routes", "./app/routes"],
["constants", "./app/constants"],
["components", "./app/components"],
["containers", "./app/containers"],
["utils", "./app/utils"],
["store", "./app/store"],
["actions", "./app/store/actions"],
["actionTypes", "./app/store/actionTypes"],
["reducers", "./app/store/reducers"],
["services", "./app/store/services"]
],
"extensions": [".ts", ".js", ".jsx", ".json"]
}
}
}
}