Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 3 additions & 2 deletions .gitattributes
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,9 @@
# repository needs CRLF, so the working tree stays LF everywhere.
* text=auto eol=lf

# Unified diffs prefix upstream tab-indented context with a required space.
/patches/*.patch whitespace=-space-before-tab
# Unified diffs require a leading space for context, including empty and tab-indented lines.
/patches/*.patch whitespace=-space-before-tab,-blank-at-eol
/patches/*.diff whitespace=-space-before-tab,-blank-at-eol

# Repository-local agent configuration, visual review evidence, and incubation
# working notes are not source-release inputs.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -914,4 +914,3 @@ function freezeTranscriptValue<T>(value: T): T {
for (const child of Object.values(value)) freezeTranscriptValue(child);
return Object.freeze(value);
}

Loading