2020-08-22 03:13:24 +03:00
|
|
|
{
|
|
|
|
"plugins": ["jest"],
|
|
|
|
"extends": [
|
|
|
|
"eslint:recommended",
|
|
|
|
"plugin:@typescript-eslint/eslint-recommended",
|
|
|
|
"plugin:@typescript-eslint/recommended",
|
|
|
|
"plugin:@typescript-eslint/recommended-requiring-type-checking",
|
|
|
|
"plugin:react/recommended",
|
2021-11-06 20:28:35 +03:00
|
|
|
"plugin:react-hooks/recommended",
|
2020-08-22 03:13:24 +03:00
|
|
|
"plugin:jest/recommended",
|
|
|
|
"plugin:jest/style",
|
2021-08-27 06:23:46 +03:00
|
|
|
"prettier"
|
2020-08-22 03:13:24 +03:00
|
|
|
],
|
|
|
|
"rules": {
|
|
|
|
"@typescript-eslint/no-unsafe-return": "off",
|
|
|
|
"@typescript-eslint/no-unsafe-assignment": "off",
|
|
|
|
"@typescript-eslint/no-unsafe-call": "off",
|
|
|
|
"@typescript-eslint/no-unsafe-member-access": "off"
|
|
|
|
}
|
|
|
|
}
|