Skip to content

Commit

Permalink
chore: enable throw-literal
Browse files Browse the repository at this point in the history
  • Loading branch information
Shinigami92 committed Mar 3, 2024
1 parent 429d01d commit 3771f01
Showing 1 changed file with 8 additions and 2 deletions.
10 changes: 8 additions & 2 deletions .eslintrc.cjs
Original file line number Diff line number Diff line change
Expand Up @@ -86,12 +86,18 @@ module.exports = defineConfig({
// TODO @Shinigami92 2024-02-29: Remove these later
'@typescript-eslint/no-base-to-string': 'off',
'@typescript-eslint/no-floating-promises': 'off',
'@typescript-eslint/no-redundant-type-constituents': 'off',
'@typescript-eslint/no-throw-literal': 'off',
'@typescript-eslint/no-unsafe-argument': 'off',
'@typescript-eslint/no-unsafe-return': 'off',
'@typescript-eslint/no-var-requires': 'off',
'@typescript-eslint/restrict-template-expressions': 'off',
'@typescript-eslint/unified-signatures': 'off',
},
overrides: [
{
files: ['test/migrations/*.js'],
rules: {
'@typescript-eslint/no-throw-literal': 'off',
},
},
],
});

0 comments on commit 3771f01

Please sign in to comment.