Skip to content

Commit

Permalink
chore: disable no-undef rule in favour of tsc
Browse files Browse the repository at this point in the history
Signed-off-by: Muthu Kumar <muthukumar@thefeathers.in>
  • Loading branch information
MKRhere committed Aug 26, 2022
1 parent 6c228e5 commit 38ef0ca
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
3 changes: 2 additions & 1 deletion .eslintrc
Expand Up @@ -12,7 +12,8 @@
"@typescript-eslint/explicit-function-return-type": "off",
"@typescript-eslint/no-explicit-any": "warn",
"@typescript-eslint/no-non-null-assertion": "warn",
"@typescript-eslint/promise-function-async": "off"
"@typescript-eslint/promise-function-async": "off",
"no-undef": "off"
}
}
],
Expand Down
1 change: 0 additions & 1 deletion src/cli.mts
@@ -1,5 +1,4 @@
#!/usr/bin/env node
/* global console, process */

import debug from 'debug'
import parse from 'mri'
Expand Down

0 comments on commit 38ef0ca

Please sign in to comment.