-
Notifications
You must be signed in to change notification settings - Fork 1
/
.eslintrc
61 lines (61 loc) · 1.74 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
{
"parser" : "babel-eslint",
"plugins": [
"import",
"sort-imports-es6-autofix"
],
"extends" : ["airbnb"],
"rules": {
// Soften some rules.
"comma-dangle": 0, // Nobody cares about commas.
"default-case": 0, // Required default case is nonsense.
"new-cap": [2, {"capIsNew": false, "newIsCap": true}], // For Record() etc.
"no-floating-decimal": 0, // .5 is just fine.
"no-shadow": 2, // Shadowing is a nice language feature, but it can kick
// eslint-plugin-import
"import/no-unresolved": [2, {"commonjs": true}],
"import/named": 2,
"import/default": 2,
"import/namespace": 2,
"import/export": 2,
// BB rules soften
"max-len": 0,
"key-spacing": [2, {"beforeColon": false, "afterColon": true, "mode": "minimum"}], // Enable use of nice block object creation.
"no-use-before-define": 0, // Enable to define styles after using them in component.
"react/jsx-no-bind": 0, // Enable arrow functions in Props definitions.
"react/prefer-stateless-function": 0, // Enable functions with state.
"react/jsx-filename-extension": [1, { "extensions": [".js", ".jsx"] }],
"react/forbid-prop-types": 0
},
"globals": {
"test": false,
"expect": false,
"after": false,
"afterEach": false,
"before": false,
"beforeEach": false,
"document": false,
"console": false,
"describe": false,
"it": false,
"module": false,
"process": false,
"require": false,
"webpackIsomorphicTools": false,
"window": false
},
"settings": {
"import/ignore": [
"node_modules",
"\\.json$"
],
"import/parser": "babel-eslint",
"import/resolve": {
"extensions": [
".js",
".jsx",
".json"
]
}
}
}