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