Skip to content

Commit

Permalink
disable errors for tests files
Browse files Browse the repository at this point in the history
  • Loading branch information
volodymyr-basiuk committed Jul 18, 2023
1 parent 93505de commit 412328d
Showing 1 changed file with 10 additions and 0 deletions.
10 changes: 10 additions & 0 deletions .eslintrc
Original file line number Diff line number Diff line change
Expand Up @@ -7,5 +7,15 @@
"@typescript-eslint/no-floating-promises": ["error"],
"@typescript-eslint/no-non-null-assertion": "off"
},
"overrides": [
{
"files": ["tests/**/*.js"],
"rules": {
"no-undef": "off",
"@typescript-eslint/no-var-requires": "off",
"@typescript-eslint/no-floating-promises": "off"
}
}
],
"ignorePatterns": ["dist", "node_modules"]
}

0 comments on commit 412328d

Please sign in to comment.