Skip to content

Commit

Permalink
add --ignore-unknown to prettier
Browse files Browse the repository at this point in the history
  • Loading branch information
JoeKarow committed Sep 13, 2023
1 parent 4f81e7f commit eb16c4c
Show file tree
Hide file tree
Showing 6 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion packages/api/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
"types": "./index.ts",
"scripts": {
"clean:node": "rm -rf ./node_modules/ || true",
"format": "prettier --write --cache --cache-strategy metadata .",
"format": "prettier --write --cache --cache-strategy metadata --ignore-unknown .",
"lint": "eslint --cache .",
"lint:fix": "eslint --cache --fix .",
"type-check": "tsc --noEmit",
Expand Down
2 changes: 1 addition & 1 deletion packages/auth/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
"types": "./index.ts",
"scripts": {
"clean:node": "rm -rf ./node_modules/ || true",
"format": "prettier --write --cache --cache-strategy metadata .",
"format": "prettier --write --cache --cache-strategy metadata --ignore-unknown .",
"lint": "eslint --cache .",
"lint:fix": "eslint --cache --fix .",
"type-check": "tsc --noEmit",
Expand Down
2 changes: 1 addition & 1 deletion packages/crowdin/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@
},
"scripts": {
"clean:node": "rm -rf ./node_modules/ || true",
"format": "prettier --write --cache --cache-strategy metadata .",
"format": "prettier --write --cache --cache-strategy metadata --ignore-unknown .",
"lint": "eslint --cache .",
"lint:fix": "eslint --cache --fix .",
"type-check": "tsc --noEmit",
Expand Down
2 changes: 1 addition & 1 deletion packages/ui/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
"clean:node": "rm -rf ./node_modules/ || true",
"dev": "pnpm with-env storybook dev -p 6006 --no-open",
"dev:fast": "pnpm dev",
"format": "prettier --write --cache --cache-strategy metadata .",
"format": "prettier --write --cache --cache-strategy metadata --ignore-unknown .",
"preinstall": "npx only-allow pnpm",
"lint": "eslint --cache .",
"lint:fix": "eslint --cache --fix .",
Expand Down
2 changes: 1 addition & 1 deletion packages/util/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
"types": "./index.ts",
"scripts": {
"clean:node": "rm -rf ./node_modules/ || true",
"format": "prettier --write --cache --cache-strategy metadata .",
"format": "prettier --write --cache --cache-strategy metadata --ignore-unknown .",
"lint": "eslint --cache .",
"lint:fix": "eslint --cache --fix .",
"type-check": "tsc --noEmit",
Expand Down
2 changes: 1 addition & 1 deletion turbo/generators/templates/package/package.json.hbs
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
"types": "./index.ts",
"scripts": {
"clean:node": "rm -rf ./node_modules/ || true",
"format": "prettier --write --cache --cache-strategy metadata .",
"format": "prettier --write --cache --cache-strategy metadata --ignore-unknown .",
"lint": "eslint --cache .",
"lint:fix": "eslint --cache --fix .",
"type-check": "tsc --noEmit",
Expand Down

0 comments on commit eb16c4c

Please sign in to comment.