Skip to content

Commit

Permalink
Ignore coverage folder when linting (gnosis/gp-v2-contracts#775)
Browse files Browse the repository at this point in the history
  • Loading branch information
fedgiac authored Aug 9, 2021
1 parent 9858385 commit 58e986b
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion .eslintrc.js
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,13 @@ module.exports = {
"plugin:@typescript-eslint/recommended",
"plugin:prettier/recommended",
],
ignorePatterns: ["build/", "node_modules/", "!.prettierrc.js", "lib/"],
ignorePatterns: [
"build/",
"node_modules/",
"coverage/",
"!.prettierrc.js",
"lib/",
],
rules: {
"import/order": [
"error",
Expand Down

0 comments on commit 58e986b

Please sign in to comment.