From 27ec9305b5893c1bf5a8698d53ca8a0a8a62f747 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Tue, 19 May 2026 17:35:31 +0000 Subject: [PATCH 1/2] docs: add cross-platform guide (Unix LF) --- tmp/chaos/platform-guide.md | 8 ++++++++ 1 file changed, 8 insertions(+) create mode 100644 tmp/chaos/platform-guide.md diff --git a/tmp/chaos/platform-guide.md b/tmp/chaos/platform-guide.md new file mode 100644 index 00000000000..276c542192e --- /dev/null +++ b/tmp/chaos/platform-guide.md @@ -0,0 +1,8 @@ +# Cross-Platform Development Guide + +## Line Ending Strategies + +Unix systems: LF (\n) +Windows systems: CRLF (\r\n) + +Chaos marker: a8c5f2b9 From 1410e7d0961c2fadccd68df3985851a6780c286f Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Tue, 19 May 2026 17:35:33 +0000 Subject: [PATCH 2/2] docs: add line-ending best practices --- tmp/chaos/platform-guide.md | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/tmp/chaos/platform-guide.md b/tmp/chaos/platform-guide.md index 276c542192e..5660bd5841a 100644 --- a/tmp/chaos/platform-guide.md +++ b/tmp/chaos/platform-guide.md @@ -6,3 +6,9 @@ Unix systems: LF (\n) Windows systems: CRLF (\r\n) Chaos marker: a8c5f2b9 + +## Best Practices + +- Use .gitattributes for consistent line endings +- Normalize in CI pipelines +- Test on multiple platforms