Skip to content

Commit 50e612b

Browse files
authored
Merge pull request #11136 from CesiumGS/prettier-no-config
Use the no-config option with prettier to prevent conflicts
2 parents e919963 + a616a6c commit 50e612b

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

package.json

+4-4
Original file line numberDiff line numberDiff line change
@@ -147,20 +147,20 @@
147147
"deploy-s3": "gulp deployS3",
148148
"deploy-status": "gulp deployStatus",
149149
"deploy-set-version": "gulp deploySetVersion",
150-
"prettier": "prettier --write \"**/*\"",
151-
"prettier-check": "prettier --check \"**/*\""
150+
"prettier": "prettier --write --no-config \"**/*\"",
151+
"prettier-check": "prettier --check --no-config \"**/*\""
152152
},
153153
"engines": {
154154
"node": ">=14.0.0"
155155
},
156156
"lint-staged": {
157157
"*.{js,cjs,html}": [
158158
"eslint --cache --quiet",
159-
"prettier --write"
159+
"prettier --write --no-config"
160160
],
161161
"*.md": [
162162
"markdownlint --ignore CHANGES.md --ignore \"./**/LICENSE.md\"",
163-
"prettier --write"
163+
"prettier --write --no-config"
164164
]
165165
},
166166
"workspaces": [

0 commit comments

Comments
 (0)