forked from WinnerOne-LETS/LETS_FE
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.eslintrc.json
36 lines (36 loc) · 1.03 KB
/
.eslintrc.json
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
{
"extends": [
"next/core-web-vitals",
"airbnb",
"airbnb-typescript",
"prettier",
"plugin:testing-library/react",
"plugin:jest-dom/recommended"
],
"parserOptions": {
"project": "./tsconfig.json"
},
"rules": {
"react/react-in-jsx-scope": "off",
"react/jsx-curly-brace-presence": "off",
"no-else-return": "off",
"no-param-reassign": "off",
"react/function-component-definition": [
1,
{ "namedComponents": ["arrow-function"] }
],
"arrow-body-style": "off",
"no-console": "off",
"@next/next/no-img-element": "off",
"global-require": 0,
"import/no-extraneous-dependencies": ["error", { "devDependencies": true }],
"jsx-a11y/click-events-have-key-events": "off",
"jsx-a11y/no-static-element-interactions": "off",
"react/require-default-props": "off",
"object-shorthand": 0,
"no-nested-ternary": "off",
"jsx-a11y/control-has-associated-label": "off",
"react/no-array-index-key": "off",
"jsx-a11y/mouse-events-have-key-events": "off"
}
}