2020-08-16 16:00:54 +03:00
|
|
|
{
|
|
|
|
"plugins": ["jest"],
|
|
|
|
"extends": [
|
|
|
|
"eslint:recommended",
|
|
|
|
"plugin:@typescript-eslint/eslint-recommended",
|
|
|
|
"plugin:@typescript-eslint/recommended",
|
|
|
|
"plugin:@typescript-eslint/recommended-requiring-type-checking",
|
|
|
|
"plugin:jest/recommended",
|
|
|
|
"plugin:jest/style",
|
|
|
|
"prettier/@typescript-eslint"
|
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"
|
|
|
|
}
|
2020-08-16 16:00:54 +03:00
|
|
|
}
|