Skip to content

Commit

Permalink
Treat ESLint warnings as errors
Browse files Browse the repository at this point in the history
  • Loading branch information
lawrence-forooghian committed May 4, 2023
1 parent 0853210 commit 5d1d61e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -14,8 +14,8 @@
"start:dev": "TEST_OBSERVABILITY_AUTH_KEY=abc123 nest start --watch",
"start:debug": "nest start --debug --watch",
"start:prod": "node dist/src/main",
"lint:check": "eslint src test",
"lint:fix": "eslint src test --fix",
"lint:check": "eslint src test --max-warnings 0",
"lint:fix": "eslint src test --max-warnings 0 --fix",
"test": "jest",
"test:watch": "jest --watch",
"test:cov": "jest --coverage",
Expand Down

0 comments on commit 5d1d61e

Please sign in to comment.