To maintain visual clarity, code style consistency, and minimize Git diff noise, this project automatically enforces strict code formatting.
- Engine: Prettier & ESLint
- Language Targets: TypeScript (.ts, .tsx), JavaScript (.js), JSON (.json), Markdown (.md)
- Formatting Constraints: Configured automatically via .prettierrc\ and .eslintrc.json.
Before submitting a Pull Request, run the local styling script blocks to verify adherence:
\\�ash
npm run format:check
npm run format:write \\
- Every Pull Request triggers an automated style validation step.
- If formatting violations are detected, the CI runner will automatically attempt to run the formatter, commit the stylistic corrections directly back to your branch, and exit safely with clean error feedback logs.