Skip to content

Commit c69b3c8

Browse files
committed
chore: configure fmt to explicitly use .prettierignore for modules exclusion
1 parent 693fad9 commit c69b3c8

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Taskfile.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -78,12 +78,12 @@ tasks:
7878
fmt:
7979
desc: Format all markdown files with prettier
8080
cmds:
81-
- npx prettier --write "**/*.md"
81+
- npx prettier --write "**/*.md" --ignore-path .prettierignore
8282

8383
fmt:check:
8484
desc: Check markdown formatting without making changes
8585
cmds:
86-
- npx prettier --check --log-level=debug "**/*.md"
86+
- npx prettier --check --log-level=debug "**/*.md" --ignore-path .prettierignore
8787

8888
# File reference validation
8989
check:files:

0 commit comments

Comments
 (0)