Skip to content

Commit

Permalink
fix: turn off @typescript-eslint/no-unsafe-return by default
Browse files Browse the repository at this point in the history
  • Loading branch information
zemd committed Oct 23, 2023
1 parent c765fad commit bea5461
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 @@ -89,6 +89,11 @@ const customTypescriptRules: Linter.RulesRecord = {
// https://typescript-eslint.io/rules/no-explicit-any/
// should not be forced by default, turn on when you really need it
"off",
],
"@typescript-eslint/no-unsafe-return": [
// https://typescript-eslint.io/rules/no-unsafe-return/
// should not be forced by default, turn on when you really need it
"off",
]
};

Expand Down

0 comments on commit bea5461

Please sign in to comment.