-
Notifications
You must be signed in to change notification settings - Fork 7
/
.eslintrc
46 lines (46 loc) · 1.43 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
40
41
42
43
44
45
46
{
"extends": [
"next/core-web-vitals",
"airbnb",
"airbnb-typescript",
"plugin:tailwindcss/recommended",
"plugin:react/jsx-runtime",
"eslint:recommended",
"next"
],
"parserOptions": {
"project": "./tsconfig.json"
},
"plugins": ["unused-imports", "tailwindcss"],
"rules": {
"no-await-in-loop": "off",
"react/jsx-props-no-spreading": "off",
"implicit-arrow-linebreak": "off",
"max-len": "off",
"jsx-a11y/label-has-associated-control": "off",
"react/require-default-props": "off",
"react/jsx-one-expression-per-line": "off",
"consistent-return": "off",
"array-callback-return": "off",
"react/jsx-indent": "off",
"no-trailing-spaces": "off",
"tailwindcss/no-custom-classname": "off",
"jsx-a11y/no-static-element-interactions": "off",
"jsx-a11y/click-events-have-key-events": "off",
"react/no-array-index-key": "off",
"react/no-unstable-nested-components": "off",
"@typescript-eslint/no-shadow": "off",
"react/no-unused-prop-types": "off",
"import/no-cycle": "off",
"react/function-component-definition": "off",
"@typescript-eslint/no-use-before-define": "off",
"class-methods-use-this": "off",
"import/no-named-as-default": "off",
"no-console": "off",
"no-plusplus": "off",
"import/prefer-default-export": "off",
"@typescript-eslint/indent": "off",
"@typescript-eslint/quotes": "off",
"padded-blocks": "off"
}
}