style: apply Prettier so format:check can gate PRs - #83
Open
Dhirenderchoudhary wants to merge 1 commit into
Open
style: apply Prettier so format:check can gate PRs#83Dhirenderchoudhary wants to merge 1 commit into
Dhirenderchoudhary wants to merge 1 commit into
Conversation
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
Runs the repo Prettier config (
printWidth100, trailing commas, etc.) over the 17 source files that currently failpnpm run format:check.No behavior changes — wrapping, line breaks, and import layout only. Needed so the CI PR can gate PRs with
format:checkwithout failing onmain.Does not touch
.github/, docs, orpackage.json.Files
src/assertion.ts,src/config.ts,src/index.ts,src/tools.ts,src/types.ts,src/video.ts,src/email.ts,src/errors.ts,src/data-cache.ts,src/prompts/index.ts,src/cua/loop.ts,src/cua/prompts.ts,src/utils/index.ts,src/utils/tab-manager.ts, plus three test files.Test plan
pnpm exec prettier --check 'src/**/*.ts' '*.json' '*.ts'pnpm run lint— same 0 errors / 31 warnings as beforepnpm run buildpnpm test— 12 files, 155 tests