chore: normalize line endings with .gitattributes - #442
Merged
Conversation
Adds '* text=auto' so git stores all text files with LF line endings (contributors on Windows still get CRLF working copies via autocrlf), and renormalizes the 17 files that were committed with CRLF or mixed endings. Whitespace-only: 'git diff -w' for this commit is empty. Prevents the per-file line-ending drift that made recent PRs noisier than their content. Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
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.
The repo currently has mixed line endings per file — some files CRLF (root README,
clerk_flutter/pubspec.yaml, the generated localizations, a few source files), most LF — which shows up as noise in unrelated diffs (bit us in #433).This adds
* text=autoto.gitattributes(keeping the existing linguist rule) and renormalizes in the same commit, so it never comes up again:core.autocrlfgit diff -wfor this commit is empty, and the whitespace-hidden diff shows nothingBest merged when no long-lived branches are in flight, since open branches touching these files can see line-ending conflicts on rebase.
🤖 Generated with Claude Code