forked from zk-coins/app
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.gitattributes
More file actions
18 lines (16 loc) · 811 Bytes
/
Copy path.gitattributes
File metadata and controls
18 lines (16 loc) · 811 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
# Force git to treat these as text for diff/merge.
*.mjs text
*.ts text
*.tsx text
# Y4M fake-camera fixtures are raw binary; the long white-pixel runs
# (0xFF, no NUL) in the first frame would otherwise pass git's text
# sniffing and risk line-ending normalisation corrupting the stream.
*.y4m binary
# wasm-bindgen output vendored under packages/zkcoins-wasm/src/pkg is
# GENERATED glue (client.js + .d.ts + .wasm) — mark it so linguist,
# diffs, and code-quality reviewers treat it as machine-written instead
# of flagging style findings (e.g. "useless assignment") in it. Never
# hand-edit these files; regenerate them with wasm-pack. `**` (not `*`)
# so future wasm-pack output in subdirectories (e.g. `snippets/`) stays
# covered too.
packages/zkcoins-wasm/src/pkg/** linguist-generated=true