-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.eslintrc.json
44 lines (44 loc) · 872 Bytes
/
.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
37
38
39
40
41
42
43
44
{
"extends": [
"next/core-web-vitals",
"airbnb",
"airbnb-typescript"
],
"parserOptions": {
"project": "./tsconfig.json"
},
"overrides": [
{
"files": [
"./src/*.ts",
"./src/*.tsx"
],
"plugins": []
}
],
"rules": {
"react/react-in-jsx-scope": "off",
"import/prefer-default-export": "off",
"@typescript-eslint/no-unused-vars": "warn",
"react/button-has-type": "warn",
"jsx-a11y/alt-text": "warn",
"@typescript-eslint/no-shadow": "warn",
"react/destructuring-assignment": "warn",
"react/jsx-props-no-spreading": "off",
"consistent-return": "off",
"max-len": [
"warn",
{
"code": 80,
"comments": 120,
"tabWidth": 2
}
],
"react/jsx-max-props-per-line": [
"warn",
{
"maximum": 2
}
]
}
}