Skip to content

Commit d7a92b0

Browse files
committed
re-add prettier as part of 'lint' and 'lint:fix' steps
1 parent 3e3426f commit d7a92b0

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,8 +25,8 @@
2525
"test-services:stop": "docker compose -f ./test/docker-compose.yaml down",
2626
"test:with-services-env": "cross-env NODE_OPTIONS='-r dotenv/config' DOTENV_CONFIG_PATH=./test/test-services.env npm test",
2727
"test-all-versions:with-services-env": "cross-env NODE_OPTIONS='-r dotenv/config' DOTENV_CONFIG_PATH=./test/test-services.env npm run test-all-versions",
28-
"lint": "nx run-many -t lint && npm run lint:deps && npm run lint:readme && npm run lint:markdown && npm run lint:semconv-deps",
29-
"lint:fix": "nx run-many -t lint --fix && npm run lint:markdown:fix",
28+
"lint": "nx run-many -t lint && prettier --check . && npm run lint:deps && npm run lint:readme && npm run lint:markdown && npm run lint:semconv-deps",
29+
"lint:fix": "nx run-many -t lint --fix && prettier --write . && npm run lint:markdown:fix",
3030
"lint:deps": "npx --yes [email protected] --dependencies --production --tags=-knipignore",
3131
"lint:markdown": "markdownlint-cli2 $(git ls-files '*.md')",
3232
"lint:markdown:fix": "markdownlint-cli2 --fix $(git ls-files '*.md')",

0 commit comments

Comments
 (0)