forked from valerybugakov/react-selectable-fast
-
Notifications
You must be signed in to change notification settings - Fork 1
/
.eslintrc
40 lines (38 loc) · 999 Bytes
/
.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": {
"browser": true,
"es6": true,
},
"plugins": [
"babel",
"react"
],
"parser": "babel-eslint",
"extends": "airbnb",
"rules": {
"max-len": ["error", 100],
"semi": ["error", "never"],
"arrow-parens": ["error", "as-needed"],
"comma-dangle": [2, {
"arrays": "always-multiline",
"objects": "always-multiline",
"imports": "always-multiline",
"exports": "always-multiline",
"functions": "ignore"
}],
"function-paren-newline": "off",
"no-param-reassign": "off",
"no-return-assign": "off",
"no-mixed-operators": "off",
"no-restricted-syntax": "off",
"class-methods-use-this": "off",
"react/sort-comp": "off",
"react/prop-types": "off",
"react/require-default-props": "off",
"react/jsx-indent": "off",
"react/forbid-prop-types": "off",
"react/no-unused-prop-types": "off",
"react/jsx-filename-extension": "off",
"import/no-extraneous-dependencies": "off",
},
}