forked from cardano-foundation/cardano-wallet
-
Notifications
You must be signed in to change notification settings - Fork 1
/
.gitattributes
27 lines (22 loc) · 956 Bytes
/
.gitattributes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
# https://git-scm.com/docs/gitattributes
#
# GitHub Linguist annotations
# - influence how files are shown in the GitHub diff view
# https://github.com/github/linguist/blob/master/docs/overrides.md
# Hide stuff that is generated by nix-tools stack-to-nix
nix/materialized/stack-nix/*.cache* linguist-generated=true merge=binary
nix/materialized/*/*.nix linguist-generated=true merge=binary
# Hide nix flake lock boilerplate
flake.lock linguist-generated=true
# Hide the Cabal freeze file
cabal.project.freeze linguist-generated=true
# Hide golden JSON files used for tests
# - they clog up the GitHub PR review page.
# Also set the "binary" merge mode for Git,
# because textual merging of auto-generated JSON rarely works well.
lib/core/test/data/Cardano/Wallet/**/*.json linguist-generated=true merge=binary
# Include documentation in code stats
*.md linguist-detectable
*.md linguist-language=Markdown
*.md linguist-documentation=false
*.md text