forked from dreikanter/feeder
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.eslintrc
29 lines (29 loc) · 877 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
{
"extends": "airbnb",
"env": {
"browser": true
},
"rules": {
"camelcase": ["error", {ignoreDestructuring: true}],
"semi": "off",
"import/prefer-default-export": "off",
"comma-dangle": "off",
"no-multiple-empty-lines": "off",
"react/jsx-filename-extension": "off",
"react/jsx-wrap-multilines": "off",
"react/no-array-index-key": "off",
"react/forbid-prop-types": "off",
"react/no-unused-prop-types": "off",
"import/no-unresolved": "off",
"import/extensions": "off",
"import/no-extraneous-dependencies": "off",
"jsx-a11y/no-autofocus": "off",
"jsx-quotes": ["error", "prefer-double"],
"arrow-parens": ["error", "as-needed", { "requireForBlockBody": false }],
"space-before-function-paren": ["error", {
"anonymous": "always",
"named": "always",
"asyncArrow": "always"
}]
}
}