From 244f7ff06a57d011b9a15af47bda745fe3acd87d Mon Sep 17 00:00:00 2001 From: mleader Date: Tue, 26 Sep 2023 13:19:55 -0400 Subject: [PATCH] update contributing doc --- queries/cdmq/CONTRIBUTING.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/queries/cdmq/CONTRIBUTING.md b/queries/cdmq/CONTRIBUTING.md index 160959b6..298b2baf 100644 --- a/queries/cdmq/CONTRIBUTING.md +++ b/queries/cdmq/CONTRIBUTING.md @@ -28,14 +28,14 @@ cd CommonDataModel/queries/cdmq npm install ``` -4. Check current code style if changes are required with [prettier](https://prettier.io/docs/en/cli.html). +4. Check current code style if changes are required with [prettier](https://prettier.io/docs/en/cli.html) using [npx](https://docs.npmjs.com/cli/v7/commands/npx). ```shell -prettier *.js --check +npx prettier *.js --check ``` 5. Apply code style changes. ```shell -prettier *.js --write +npx prettier *.js --write ``` \ No newline at end of file