-
Notifications
You must be signed in to change notification settings - Fork 3
/
.eslintrc
50 lines (50 loc) · 1.08 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
{
"parser": "babel-eslint",
"extends": [
"eslint:recommended",
"plugin:flowtype/recommended",
"plugin:jasmine/recommended",
"plugin:promise/recommended",
"plugin:jest/recommended"
],
"plugins": [
"react",
"mocha",
"flowtype",
"jasmine",
"promise",
"jest"
],
"parserOptions": {
"sourceType": "module",
"ecmaFeatures": {
"jsx": true,
"modules": true,
"classes": true
}
},
"env": {
"browser": true,
"node": true,
"es6": true,
"jasmine": true,
"jest": true
},
"rules": {
"strict": ["error", "global"],
"indent": ["warn", 2],
"linebreak-style": ["warn", "unix"],
"quotes": ["warn", "single"],
"semi": ["warn", "never"],
"no-undef": "error",
"no-underscore-dangle": "off",
"react/jsx-uses-vars": "error",
"eqeqeq": "error",
"no-eq-null": "error",
"no-loop-func": "error",
"no-duplicate-imports": "error",
"no-param-reassign": "error",
"prefer-const": ["error", {"destructuring": "all"}],
"jasmine/new-line-before-expect": "off"
}
}