Skip to content

Commit

Permalink
Silence formatting output (#3165)
Browse files Browse the repository at this point in the history
Today, `make spec-format-fix` (a dependency of make contrib) nearly
prints 2000 lines of output, which isn't useful while making the
validation errors less visible.
  • Loading branch information
pquentin authored Nov 22, 2024
1 parent 986d9db commit ca815c4
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions compiler/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,8 @@
"scripts": {
"lint": "ts-standard src",
"lint:fix": "ts-standard --fix src",
"format:check": "prettier --config .prettierrc.json --check ../specification/",
"format:fix": "prettier --config .prettierrc.json --write ../specification/",
"format:check": "prettier --config .prettierrc.json --loglevel warn --check ../specification/",
"format:fix": "prettier --config .prettierrc.json --loglevel warn --write ../specification/",
"generate-schema": "ts-node src/index.ts",
"transform-expand-generics": "ts-node src/transform/expand-generics.ts",
"transform-to-openapi": "ts-node src/transform/schema-to-openapi.ts",
Expand Down

0 comments on commit ca815c4

Please sign in to comment.