-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.eslintrc
66 lines (66 loc) · 1.85 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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
{
"parser": "babel-eslint",
"extends": "eslint-config-airbnb",
"plugins": [
"react",
"import"
],
"env": {
"browser": true,
"node": true,
"mocha": true
},
"rules": {
"import/no-named-as-default": 1,
// Temporarirly disabled due to a possible bug in babel-eslint (todomvc example)
// "block-scoped-var": 0,
// Temporarily disabled for test/* until babel/babel-eslint#33 is resolved
"padded-blocks": 0,
"comma-dangle": 0,
// not sure why airbnb turned this on. gross!
"no-console": 0,
"semi": 0,
"no-extra-semi": 1,
"new-cap": 0,
"space-before-function-paren": 0,
"one-var": 0,
"radix": 0,
"no-unused-vars": 1,
"quote-props": 0,
"max-len": [
1,
120,
4,
{
"ignoreComments": true
}
],
"no-param-reassign": 0, // hhj from este framework: We love param reassignment. Naming is hard.
"no-shadow": 0, // Shadowing is a nice language feature. Naming is hard.
// Overide Stateless
"react/prefer-stateless-function": 0,
"func-names": 0, // hhj
"no-underscore-dangle": 0, // hhj
"global-require": 0, // hhj
"import/no-extraneous-dependencies": 1, // hhj
"import/prefer-default-export": 1 // hhj
},
"settings": {
"import/parser": "babel-eslint",
"import/resolve": {
"moduleDirectory": [
"node_modules",
"src"
]
}
},
"globals": {
"__DEVELOPMENT__": true,
"__CLIENT__": true,
"__SERVER__": true,
"__DISABLE_SSR__": true,
"__DEVTOOLS__": true,
"socket": true,
"webpackIsomorphicTools": true
}
}