Skip to content

Commit

Permalink
Added rules specific for tests (#4583)
Browse files Browse the repository at this point in the history
* Added rules specific for tests

* Re-enabled max-statements
  • Loading branch information
grafitto authored May 9, 2022
1 parent 4ea514f commit 273c40e
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions .eslintrc
Original file line number Diff line number Diff line change
Expand Up @@ -156,6 +156,13 @@
"max-lines-per-function": "off"
}
},
{
"files": ["app/**/specs/*"],
"rules": {
"max-lines-per-function": "off",
"max-lines": "off"
}
},
{
"files": ["app/**/*.ts*", "database/**/*.ts", "e2e/**/*.ts"],
"parser": "@typescript-eslint/parser",
Expand Down

0 comments on commit 273c40e

Please sign in to comment.