feedBack/.gitattributes
Sin 4148b0e72e Purge external-format terminology from code, tests and docs
Reword comments/docstrings/strings and rename identifiers that referenced
the external game and its file formats:

- format-id "psarc" -> "archive"; local vars psarc_path -> song_path,
  psarc_base -> tone_base
- lyrics provenance value "sng" -> "notechart" (legacy "sng" still accepted)
- highway_3d fret-ghost scope value "rocksmith" -> "chords" (invalid/legacy
  values fall back to the default, preserving behaviour)
- neutralise references in prose, test names/data, .gitattributes and docs

No functional change beyond the renamed identifiers; all Python compiles.
2026-06-16 19:36:53 +01:00

17 lines
826 B
Plaintext

# Shell scripts must use LF line endings — bash interprets a \r in the
# shebang as part of the path, producing "/usr/bin/env: 'bash\r': No such
# file or directory" on WSL2 / Linux when checked out with autocrlf=true.
*.sh text eol=lf
# Keep the minified Three.js bundle byte-identical across platforms.
# Without this, autocrlf=true would rewrite the bundle's newlines on
# Windows checkouts and the SHA-256 wouldn't match the upstream tag —
# making the "pinned r170" claim in static/vendor/three/VERSION
# dishonest. Scoped narrowly to the bundle (not the whole vendor dir)
# so LICENSE / VERSION stay diff-readable for future version bumps.
static/vendor/three/three.module.min.js binary
# Sloppak test fixtures are zip archives — diffs and autocrlf rewrites
# would corrupt them.
tests/fixtures/*.sloppak binary