-
Notifications
You must be signed in to change notification settings - Fork 0
/
.eslintrc.json
38 lines (38 loc) · 1.05 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
37
38
{
"extends": [
"airbnb",
"airbnb-typescript",
"next/core-web-vitals",
"plugin:react-hooks/recommended",
"plugin:react/recommended",
"plugin:jsx-a11y/recommended"
],
"parser": "@typescript-eslint/parser",
"parserOptions": {
"project": ["./tsconfig.json"]
},
"overrides": [
{
"files": [
"*.ts",
"*.tsx"
],
"rules": {
"max-len": "off",
"no-console": "off",
"import/prefer-default-export": "off", // not considered a good practice
"react/jsx-props-no-spreading": "off", // due to react hook form we have to ignore this rule
"react/react-in-jsx-scope": "off",
"react/require-default-props": "off",
"react/function-component-definition": "off",
"no-restricted-syntax": [
"error",
{
"selector": "CallExpression[callee.object.name='console'][callee.property.name!=/^(log|warn|error|info|trace)$/]",
"message": "Unexpected property on console object was called"
}
]
}
}
]
}