20 lines
480 B
JSON
20 lines
480 B
JSON
{
|
|
"env": {
|
|
"browser": true,
|
|
"es2021": true,
|
|
"node": true
|
|
},
|
|
"extends": ["plugin:react/recommended", "airbnb", "airbnb/hooks", "airbnb-typescript"],
|
|
"parser": "@typescript-eslint/parser",
|
|
"parserOptions": {
|
|
"project": "./tsconfig.json"
|
|
},
|
|
"plugins": ["react", "@typescript-eslint"],
|
|
"rules": {
|
|
"no-shadow": "off",
|
|
"@typescript-eslint/no-shadow": ["error"],
|
|
"no-unused-vars": "warn",
|
|
"@typescript-eslint/no-unused-vars": "warn"
|
|
}
|
|
}
|