2021-08-29 17:16:47 +00:00
|
|
|
{
|
2022-03-16 06:26:15 +00:00
|
|
|
"rules": {
|
|
|
|
"no-console": "error",
|
2023-02-20 06:36:43 +00:00
|
|
|
"camelcase": "warn",
|
2022-03-16 06:26:15 +00:00
|
|
|
"@typescript-eslint/explicit-module-boundary-types": "off",
|
|
|
|
"@typescript-eslint/no-empty-function": "warn",
|
|
|
|
"@typescript-eslint/no-empty-interface": "off",
|
|
|
|
"@typescript-eslint/no-unused-vars": "warn"
|
|
|
|
},
|
|
|
|
"extends": [
|
|
|
|
"react-app",
|
|
|
|
"plugin:react-hooks/recommended",
|
|
|
|
"eslint:recommended",
|
|
|
|
"plugin:@typescript-eslint/recommended"
|
2023-02-10 15:10:13 +00:00
|
|
|
],
|
|
|
|
"plugins": ["testing-library"],
|
|
|
|
"overrides": [
|
|
|
|
{
|
|
|
|
"files": [
|
|
|
|
"**/__tests__/**/*.[jt]s?(x)",
|
|
|
|
"**/?(*.)+(spec|test).[jt]s?(x)"
|
|
|
|
],
|
|
|
|
"extends": ["plugin:testing-library/react"]
|
|
|
|
}
|
2022-03-16 06:26:15 +00:00
|
|
|
]
|
2021-08-29 17:16:47 +00:00
|
|
|
}
|