Skip to content

Commit

Permalink
chore: enable no-implied-eval
Browse files Browse the repository at this point in the history
  • Loading branch information
Shinigami92 committed Mar 3, 2024
1 parent 2a8a6a7 commit 484e71f
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 2 deletions.
1 change: 0 additions & 1 deletion .eslintrc.cjs
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,6 @@ 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-implied-eval': 'off',
'@typescript-eslint/no-redundant-type-constituents': 'off',
'@typescript-eslint/no-throw-literal': 'off',
'@typescript-eslint/no-unsafe-argument': 'off',
Expand Down
2 changes: 1 addition & 1 deletion test/migrations/002_callback.js
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
exports.up = (pgm, done) => {
setTimeout(done, 10);
setTimeout(() => done(), 10);
};

0 comments on commit 484e71f

Please sign in to comment.