-
Notifications
You must be signed in to change notification settings - Fork 134
/
.eslintrc
56 lines (48 loc) · 1.23 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
{
"extends": "eslint-config-airbnb",
"parser": "babel-eslint",
"env": {
"browser": true,
"mocha": true,
"node": true
},
"globals": {
"__data": true,
"expect": true,
"ga": true,
"Intercom": true,
"spy": true,
"sinon": true,
"Raven": true,
"Highcharts": true
},
"rules": {
"comma-dangle": 0,
"no-wrap-func": 0,
"spaced-comment": 0,
"eqeqeq": [2, "smart"],
// Portal uses some camelcase
"camelcase": 1,
// used for creating new Immutable Lists and Maps
"new-cap": [1, {"capIsNewExceptions": ["Immutable"]}],
// Sometimes short variable names are okay
"id-length": 0,
// Doesn't play nice with chai's assertions
"no-unused-expressions": 0,
"react/jsx-uses-react": 2,
"react/jsx-uses-vars": 2,
"react/react-in-jsx-scope": 2,
"react/jsx-no-duplicate-props": 2,
// Discourages microcomponentization
"react/no-multi-comp": 0,
//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,
"no-param-reassign": 0
},
"plugins": [
"react",
"lean-imports"
]
}