Skip to content

chore(format): Check jsx,tsx,astro,vue with prettier #15493

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -22,12 +22,12 @@
"clean:all": "run-s clean:build clean:tarballs clean:caches clean:deps clean:watchman",
"fix": "run-s fix:prettier fix:lerna",
"fix:lerna": "lerna run fix",
"fix:prettier": "prettier \"**/*.md\" \"**/*.css\" \"packages/**/**.{ts,js}\" --write",
"fix:prettier": "prettier \"**/*.md\" \"**/*.css\" \"packages/**/**.{ts,js,jsx,tsx,astro,vue}\" --write",
"changelog": "ts-node ./scripts/get-commit-list.ts",
"link:yarn": "lerna exec yarn link",
"lint": "run-s lint:prettier lint:lerna",
"lint:lerna": "lerna run lint",
"lint:prettier": "prettier \"**/*.md\" \"**/*.css\" \"packages/**/**.{ts,js}\" --check",
"lint:prettier": "prettier \"**/*.md\" \"**/*.css\" \"packages/**/**.{ts,js,jsx,tsx,astro,vue}\" --check",
"lint:es-compatibility": "es-check es2020 ./packages/*/build/{bundles,npm/cjs,cjs}/*.js && es-check es2020 ./packages/*/build/{npm/esm,esm}/*.js --module",
"postpublish": "lerna run --stream --concurrency 1 postpublish",
"test": "lerna run --ignore \"@sentry-internal/{browser-integration-tests,e2e-tests,integration-shims,node-integration-tests}\" test",
Expand Down
6 changes: 5 additions & 1 deletion packages/feedback/src/screenshot/components/Crop.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,11 @@ interface FactoryParams {
options: FeedbackInternalOptions;
}

export default function CropFactory({ h, hooks, options }: FactoryParams): (props: {
export default function CropFactory({
h,
hooks,
options,
}: FactoryParams): (props: {
action: 'crop' | 'annotate' | '';
imageBuffer: HTMLCanvasElement;
croppingRef: Hooks.Ref<HTMLCanvasElement>;
Expand Down
Loading