Is there an existing issue for this?
Issue Description
Description
After merging PR #805 (ESLint/Prettier configuration), we need to apply the formatting rules to the entire codebase in a separate commit.
Context
The ESLint and Prettier configuration has been added, but no code has been reformatted yet. This keeps the configuration PR reviewable and separates tooling changes from code changes.
Tasks
Files Affected
- All
.js, .jsx, .ts, .tsx files
- All
.json and .css files
- NOT markdown/MDX files (protected by
.prettierignore)
Suggested Change
This will format approximately 107+ files with:
- Consistent indentation (2 spaces)
- double quotes instead of single quotes
- Consistent semicolon usage
- Proper line breaks and spacing
Commands to Run
npm run lint:fix && npm run format
npm run build
Rationale
- The diff will be large but should only contain formatting changes, no logic changes
- This is a one-time operation - future PRs will have minimal formatting diffs
- Documentation files are excluded to preserve MDX syntax
Urgency
Medium
Record
Is there an existing issue for this?
Issue Description
Description
After merging PR #805 (ESLint/Prettier configuration), we need to apply the formatting rules to the entire codebase in a separate commit.
Context
The ESLint and Prettier configuration has been added, but no code has been reformatted yet. This keeps the configuration PR reviewable and separates tooling changes from code changes.
Tasks
npm installto ensure all dependencies are installednpm run lint:fixto auto-fix linting issuesnpm run formatto format all code filesnpm run buildFiles Affected
.js,.jsx,.ts,.tsxfiles.jsonand.cssfiles.prettierignore)Suggested Change
This will format approximately 107+ files with:
Commands to Run
npm run lint:fix && npm run format npm run buildRationale
Urgency
Medium
Record