-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.gitattributes
More file actions
17 lines (16 loc) · 1.05 KB
/
Copy path.gitattributes
File metadata and controls
17 lines (16 loc) · 1.05 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
# Verify snapshot files must keep LF line endings on every platform. Verify 31.21+
# rejects verified files that contain a carriage return (it no longer normalizes
# them), so without this rule the Windows CI runner checks *.verified.* out as CRLF
# (core.autocrlf) and every snapshot test fails on windows-latest.
#
# Scope is intentionally narrow (only Verify's files): the repository otherwise
# leaves line-ending/charset handling untouched on purpose (see .editorconfig).
*.verified.* text eol=lf
*.received.* text eol=lf
# GenDoc's own error catalog is produced by CI (the gendoc-docs workflow runs
# `fce generate` / `fce catalog` and commits the result); see doc/generated/README.md.
# Mark the whole output tree as generated so GitHub collapses it in pull-request diffs
# — a reviewer reads errors-diff.md, not 19 regenerated pages line by line — and drops
# it from the repository's language statistics. Scoped to the gendoc/ output only: the
# handwritten doc/generated/README.md sits one level up and is untouched.
doc/generated/gendoc/** linguist-generated=true