Skip to content

Commit 93990e0

Browse files
authored
ci: add prettier to circleci linting (#1328)
update prettier to 3.5.3
1 parent fb09410 commit 93990e0

File tree

3 files changed

+8
-6
lines changed

3 files changed

+8
-6
lines changed

circle.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -57,6 +57,7 @@ jobs:
5757
- checkout
5858
- run: npm ci
5959
- run: npm run lint
60+
- run: npm run format:check
6061
check-factory-versions:
6162
machine:
6263
image: ubuntu-2204:2024.11.1

package-lock.json

Lines changed: 5 additions & 5 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,7 @@
99
"scripts": {
1010
"check:markdown": "find . -type f -name '*.md' ! -path '*/node_modules/*' | xargs -L1 npx markdown-link-check -c markdownLinkConfig.json",
1111
"format": "prettier --write .",
12+
"format:check": "prettier --check .",
1213
"lint": "eslint"
1314
},
1415
"engines": {
@@ -31,6 +32,6 @@
3132
"eslint-plugin-cypress": "^4.2.0",
3233
"globals": "^16.0.0",
3334
"markdown-link-check": "3.12.2",
34-
"prettier": "3.3.3"
35+
"prettier": "3.5.3"
3536
}
3637
}

0 commit comments

Comments
 (0)