Skip to content

Commit 2161b23

Browse files
committed
Fix root .prettierignore file to not recurse into directories
1 parent 4af8744 commit 2161b23

File tree

2 files changed

+4
-2
lines changed

2 files changed

+4
-2
lines changed

.prettierignore

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -25,3 +25,5 @@ typesversions
2525

2626
tsconfig.vitest-temp.json
2727
.eslintcache
28+
29+
**/*/**

package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -52,8 +52,8 @@
5252
"jest-snapshot": "29.3.1"
5353
},
5454
"scripts": {
55-
"format": "prettier --write . '!**/*/**' --config prettier.config.mjs --cache --cache-strategy content",
56-
"format:check": "prettier --check . '!**/*/**' --config prettier.config.mjs",
55+
"format": "prettier --write . --config prettier.config.mjs --cache --cache-strategy content",
56+
"format:check": "prettier --check . --config prettier.config.mjs",
5757
"lint": "eslint . --config eslint.config.mjs --cache --cache-strategy content",
5858
"lint:fix": "eslint --fix . --config eslint.config.mjs",
5959
"build": "yarn build:packages",

0 commit comments

Comments
 (0)