Skip to content

Commit

Permalink
fix: disable rules @typescript-eslint/no-require-imports
Browse files Browse the repository at this point in the history
"node" plugin will handle this.
  • Loading branch information
RebeccaStevens committed Jan 2, 2021
1 parent 9e1217b commit 7ce18d8
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/plugins/typescript.ts
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,8 @@ export const settings: Linter.Config = {
"@typescript-eslint/array-type": ["error", { default: "generic", readonly: "generic" }],
"@typescript-eslint/indent": ["error", 2],
"@typescript-eslint/no-non-null-assertion": "off",
"@typescript-eslint/no-require-imports": "error",
// "node" plugin will handle this.
"@typescript-eslint/no-require-imports": "off",
"@typescript-eslint/no-unused-vars": [
"off",
{
Expand Down

0 comments on commit 7ce18d8

Please sign in to comment.