Skip to content

Commit

Permalink
Fix format checking and linting during builds.
Browse files Browse the repository at this point in the history
  • Loading branch information
StephanEwen authored and slinkydeveloper committed Jan 31, 2024
1 parent 9844cad commit 300fcd3
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -33,9 +33,10 @@
"proto": "npx buf mod update && npx buf generate",
"build": "tsc --noEmitOnError",
"test": "jest --silent --maxWorkers=1",
"lint": "eslint --ignore-path .eslintignore --ext .ts .",
"lint": "eslint --ignore-path .eslintignore --max-warnings=0 --ext .ts .",
"format": "prettier --ignore-path .eslintignore --write \"**/*.+(js|ts|json)\"",
"verify": "npm run format -- --check && npm run test && npm run lint && npm run build",
"format-check": "prettier --ignore-path .eslintignore --check \"**/*.+(js|ts|json)\"",
"verify": "npm run format-check && npm run lint && npm run test && npm run build",
"release": "release-it",
"example": "RESTATE_DEBUG_LOGGING=JOURNAL ts-node-dev --respawn --transpile-only ./examples/example.ts",
"grpcexample": "RESTATE_DEBUG_LOGGING=JOURNAL ts-node-dev --respawn --transpile-only ./examples/grpc_example.ts",
Expand Down

0 comments on commit 300fcd3

Please sign in to comment.