-
Notifications
You must be signed in to change notification settings - Fork 5
chore: add .gitattributes to normalize line endings #301
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
BillChirico
merged 5 commits into
VolvoxCommunity:main
from
Mnehmos:chore/normalize-line-endings
Feb 4, 2026
Merged
Changes from all commits
Commits
Show all changes
5 commits
Select commit
Hold shift + click to select a range
bcae2ce
chore: add .gitattributes to normalize line endings
Mnehmos 90ff2c0
chore: add comprehensive binary file types to .gitattributes
Mnehmos 6e6f7af
chore: add additional text file types to .gitattributes
Mnehmos 8b26529
Merge branch 'main' into chore/normalize-line-endings
Mnehmos 29bca7b
Merge branch 'main' into chore/normalize-line-endings
BillChirico File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
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
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,83 @@ | ||
| # Auto detect text files and normalize line endings to LF | ||
| * text=auto eol=lf | ||
|
|
||
| # Explicitly set text files to LF | ||
| *.ts text eol=lf | ||
| *.tsx text eol=lf | ||
| *.js text eol=lf | ||
| *.jsx text eol=lf | ||
| *.json text eol=lf | ||
| *.md text eol=lf | ||
| *.txt text eol=lf | ||
| *.yml text eol=lf | ||
| *.yaml text eol=lf | ||
| *.css text eol=lf | ||
| *.html text eol=lf | ||
| *.svg text eol=lf | ||
| *.sql text eol=lf | ||
| *.env text eol=lf | ||
| *.lock text eol=lf | ||
|
|
||
| # Config and certificate files | ||
| *.conf text eol=lf | ||
| *.pem text eol=lf | ||
| *.crt text eol=lf | ||
|
|
||
| # Keep binary files as-is | ||
| *.png binary | ||
| *.jpg binary | ||
| *.jpeg binary | ||
| *.gif binary | ||
| *.ico binary | ||
| *.woff binary | ||
| *.woff2 binary | ||
| *.ttf binary | ||
| *.eot binary | ||
coderabbitai[bot] marked this conversation as resolved.
Show resolved
Hide resolved
|
||
|
|
||
| # Archives | ||
| *.zip binary | ||
| *.tar binary | ||
| *.gz binary | ||
| *.rar binary | ||
|
|
||
| # Executables and libraries | ||
| *.exe binary | ||
| *.dll binary | ||
| *.so binary | ||
| *.dylib binary | ||
|
|
||
| # Documents | ||
| *.pdf binary | ||
| *.docx binary | ||
| *.xlsx binary | ||
| *.pptx binary | ||
|
|
||
| # Video | ||
| *.mp4 binary | ||
| *.webm binary | ||
| *.mov binary | ||
| *.avi binary | ||
| *.mkv binary | ||
|
|
||
| # Audio | ||
| *.mp3 binary | ||
| *.wav binary | ||
|
|
||
| # Java | ||
| *.class binary | ||
| *.jar binary | ||
| *.war binary | ||
|
|
||
| # Python compiled | ||
| *.pyc binary | ||
| *.pyo binary | ||
|
|
||
| # Databases | ||
| *.db binary | ||
| *.sqlite binary | ||
|
|
||
| # Other binary formats | ||
| *.webp binary | ||
| *.avif binary | ||
| *.otf binary | ||
| *.psd binary | ||
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.
Uh oh!
There was an error while loading. Please reload this page.