Skip to content

Commit 23a5ab0

Browse files
committed
fix: remove quotes from glob patterns in Prettier formatting scripts
1 parent 8ae2b03 commit 23a5ab0

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
@@ -9,8 +9,8 @@
99
"lint:fix": "eslint . --fix",
1010
"format": "prettier --check .",
1111
"format:fix": "prettier --write .",
12-
"format:md": "prettier --check '**/*.md'",
13-
"format:md:fix": "prettier --write '**/*.md'",
12+
"format:md": "prettier --check **/*.md",
13+
"format:md:fix": "prettier --write **/*.md",
1414
"lint:md": "markdownlint --ignore-path .gitignore .",
1515
"lint:md:fix": "markdownlint --ignore-path .gitignore --fix .",
1616
"prepare": "husky install"

0 commit comments

Comments
 (0)