Skip to content

Commit

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

Expand Down

0 comments on commit c765fad

Please sign in to comment.