Skip to content

Commit d733b8c

Browse files
Add .prettierignore for pnpm-lock.yaml and update format scripts
- Added .prettierignore to exclude pnpm-lock.yaml from formatting checks. - Updated format and format:fix scripts to remove .gitignore dependency.
1 parent 12e4344 commit d733b8c

2 files changed

Lines changed: 3 additions & 2 deletions

File tree

.prettierignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
pnpm-lock.yaml

package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,8 +16,8 @@
1616
"db:generate": "prisma generate",
1717
"db:push": "prisma db push",
1818
"db:studio": "prisma studio",
19-
"format": "prettier --check . --ignore-path .gitignore",
20-
"format:fix": "prettier --write . --ignore-path .gitignore",
19+
"format": "prettier --check .",
20+
"format:fix": "prettier --write .",
2121
"cy:open": "cypress open",
2222
"cy:run": "cypress run",
2323
"cy:run:chrome": "cypress run --browser chrome",

0 commit comments

Comments
 (0)