-
Notifications
You must be signed in to change notification settings - Fork 4
/
.eslintrc.json
35 lines (35 loc) · 931 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
{
"env": {
"browser": true,
"es2021": true
},
"extends": ["airbnb", "airbnb-typescript", "prettier"],
"parserOptions": {
"ecmaVersion": "latest",
"sourceType": "module",
"project": "./tsconfig.json"
},
"rules": {
"arrow-body-style": ["error", "always"],
"react/function-component-definition": [
2,
{
"namedComponents": ["arrow-function"]
}
],
"jsx-a11y/label-has-associated-control": [
2,
{
"labelAttributes": ["htmlFor"]
}
],
"@typescript-eslint/no-use-before-define": "off",
"@typescript-eslint/no-loop-func": "off",
"@typescript-eslint/no-unused-vars": "off",
"@typescript-eslint/no-shadow": "off",
"react/require-default-props": "off",
"react/self-closing-comp": "off",
"react/jsx-props-no-spreading": "off",
"import/no-extraneous-dependencies": ["error", { "devDependencies": true }]
}
}