-
Notifications
You must be signed in to change notification settings - Fork 5
/
.eslintrc
29 lines (29 loc) · 929 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": ["react-app", "prettier", "airbnb"],
"plugins": ["prettier"],
"rules": {
"prettier/prettier": ["error"],
"react/react-in-jsx-scope": "off",
"import/no-unresolved": "off",
"object-curly-newline": "off",
"import/prefer-default-export": "off",
"operator-linebreak": "off",
"no-console": "off",
"implicit-arrow-linebreak": "off",
"indent": "off",
"no-confusing-arrow": "off",
"react/jsx-one-expression-per-line": "off",
"react/button-has-type": "off",
"react-hooks/exhaustive-deps": "off",
"no-underscore-dangle": "off",
"curly": "off",
"nonblock-statement-body-position": "off",
"jsx-a11y/alt-text": "off",
"function-paren-newline": "off",
"react/jsx-props-no-spreading": "off",
"no-alert": "off",
"react/forbid-prop-types": "off",
"react/jsx-wrap-multilines": "off",
"jsx-a11y/label-has-associated-control": "off"
}
}