Skip to content

Commit

Permalink
Merge pull request #75 from ably/treat-ESLint-warnings-as-errors
Browse files Browse the repository at this point in the history
Treat ESLint warnings as errors
  • Loading branch information
lawrence-forooghian committed May 4, 2023
2 parents 96fc7bc + 5d1d61e commit eec1421
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 4 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
2 changes: 0 additions & 2 deletions src/uploads/uploads.controller.ts
Original file line number Diff line number Diff line change
@@ -1,9 +1,7 @@
import {
Controller,
Get,
Post,
Headers,
Body,
Render,
Param,
Query,
Expand Down

0 comments on commit eec1421

Please sign in to comment.