-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.eslintrc
39 lines (39 loc) · 1.04 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
{
"env": {
"node": true,
"browser": true,
"es6": true
},
"parser": "babel-eslint",
"extends": "airbnb",
"rules": {
"react/jsx-filename-extension": ["off"],
"linebreak-style": ["off"],
"no-undef": ["error"],
"react/sort-comp": ["off"],
"react/prefer-stateless-function": ["off"],
"semi": ["off"],
"spaced-comment": ["off"],
"comma-dangle": ["error", "never"],
"react/no-string-refs": ["off"],
"react/no-array-index-key": ["off"],
"no-use-before-define": "off",
"no-underscore-dangle": "off",
"react/jsx-no-bind": "off",
"camelcase": "off",
"global-require": "off",
"no-unused-expressions": "off",
"react/destructuring-assignment": "off",
"react/no-multi-comp": "off",
"no-nested-ternary": "off",
"import/prefer-default-export": "off",
"class-methods-use-this": "off"
},
"plugins": ["react", "jsx-a11y", "import", "flowtype"],
"globals": {
"it": "readonly",
"expect": "readonly",
"describe": "readonly",
"navigator": "readonly"
}
}