- Add *.yaml text eol=lf rule to .gitattributes for consistent line endings - Format cleaner.ts with Prettier (parameter and chain formatting) - Format CleanerPage.tsx (JSX formatting) - Format cleaner.test.ts (array formatting) Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
19 lines
345 B
Plaintext
19 lines
345 B
Plaintext
* text=auto
|
|
|
|
# Force Unix line endings for source files
|
|
*.md text eol=lf
|
|
*.ts text eol=lf
|
|
*.js text eol=lf
|
|
*.json text eol=lf
|
|
*.yml text eol=lf
|
|
*.yaml text eol=lf
|
|
*.tsx text eol=lf
|
|
*.jsx text eol=lf
|
|
*.css text eol=lf
|
|
*.scss text eol=lf
|
|
*.html text eol=lf
|
|
|
|
# Force Windows line endings for build artifacts
|
|
*.bat text eol=crlf
|
|
*.cmd text eol=crlf
|