Skip to content

Commit

Permalink
fix: allowing using any in typescript
Browse files Browse the repository at this point in the history
  • Loading branch information
zemd committed Oct 23, 2023
1 parent bea5461 commit 87d38bf
Showing 1 changed file with 15 additions and 0 deletions.
15 changes: 15 additions & 0 deletions src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -94,6 +94,21 @@ const customTypescriptRules: Linter.RulesRecord = {
// https://typescript-eslint.io/rules/no-unsafe-return/
// should not be forced by default, turn on when you really need it
"off",
],
"@typescript-eslint/no-unsafe-assignment": [
// https://typescript-eslint.io/rules/no-unsafe-assignment/
// should not be forced by default, turn on when you really need it
"off",
],
"@typescript-eslint/no-unsafe-member-access": [
// https://typescript-eslint.io/rules/no-unsafe-member-access/
// should not be forced by default, turn on when you really need it
"off",
],
"@typescript-eslint/no-unsafe-argument": [
// https://typescript-eslint.io/rules/no-unsafe-argument/
// should not be forced by default, turn on when you really need it
"off",
]
};

Expand Down

0 comments on commit 87d38bf

Please sign in to comment.