Skip to content

Commit

Permalink
[eslint-config-ts] Relax rules
Browse files Browse the repository at this point in the history
```json
{
  "@typescript-eslint/no-unsafe-assignment": "off",
  "@typescript-eslint/no-unsafe-call": "off",
  "@typescript-eslint/no-unsafe-member-access": "off"
}
```
  • Loading branch information
OlehDutchenko committed Mar 21, 2021
1 parent 97ca66f commit 8dd4418
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
6 changes: 3 additions & 3 deletions packages/eslint-config-ts/.eslintrc.json
Original file line number Diff line number Diff line change
Expand Up @@ -85,9 +85,9 @@
"@typescript-eslint/no-non-null-assertion": "error",
"@typescript-eslint/no-this-alias": "error",
"@typescript-eslint/no-var-requires": "off",
"@typescript-eslint/no-unsafe-assignment": "error",
"@typescript-eslint/no-unsafe-call": "error",
"@typescript-eslint/no-unsafe-member-access": "error",
"@typescript-eslint/no-unsafe-assignment": "off",
"@typescript-eslint/no-unsafe-call": "off",
"@typescript-eslint/no-unsafe-member-access": "off",
"@typescript-eslint/no-unsafe-return": "error",
"@typescript-eslint/no-unnecessary-type-assertion": "error",
"@typescript-eslint/no-unused-vars": [
Expand Down
6 changes: 3 additions & 3 deletions packages/eslint-config-ts/RULES.md
Original file line number Diff line number Diff line change
Expand Up @@ -800,23 +800,23 @@ Rule disabled

### @typescript-eslint/no-unsafe-assignment

_Value_: `"error"`
Rule disabled

[πŸ”™ Back to the README](README.md) | [πŸ” Top](#readme)

---

### @typescript-eslint/no-unsafe-call

_Value_: `"error"`
Rule disabled

[πŸ”™ Back to the README](README.md) | [πŸ” Top](#readme)

---

### @typescript-eslint/no-unsafe-member-access

_Value_: `"error"`
Rule disabled

[πŸ”™ Back to the README](README.md) | [πŸ” Top](#readme)

Expand Down

0 comments on commit 8dd4418

Please sign in to comment.