-
Notifications
You must be signed in to change notification settings - Fork 13
Expand file tree
/
Copy path.gitattributes
More file actions
51 lines (51 loc) · 2.81 KB
/
Copy path.gitattributes
File metadata and controls
51 lines (51 loc) · 2.81 KB
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
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
# Normalize text files on commit to LF endings by default
* text=auto
# Make sure Windows batch files preserve CR/LF line endings, otherwise they may not be able to execute. Windows
# batch files require a CR/LF for labels to work properly, otherwise they may fail when labels straddle 512-byte
# block boundaries. This is important when files are downloaded through a zip archive that was authored on a
# Linux machine (the default behavior on GitHub)
*.bat text eol=crlf
*.cmd text eol=crlf
# Make sure shell scripts have LF line endings, even when checked out on a Windows client with autocrlf=true
*.sh text eol=lf
# Documentation settings
*.png filter=lfs diff=lfs merge=lfs -text
*.jpg filter=lfs diff=lfs merge=lfs -text
favicon.ico filter=lfs diff=lfs merge=lfs -text
documentation/tools/packman/packman filter=lfs diff=lfs merge=lfs -text
# All files under **/images go into Git LFS
docs/images/** filter=lfs diff=lfs merge=lfs -text
# Small theme assets must remain regular Git blobs so GitHub Pages can serve them.
docs/assets/* -filter -diff -merge binary
# All videos go into Git LFS
docs/**/*.mp4 filter=lfs diff=lfs merge=lfs -text
# Generated OpenAPI specifications
openapi/**/*.yaml linguist-generated
openapi/**/*.yaml.txt linguist-generated
plugins/*/openapi/**/*.yaml linguist-generated
# Generated Models service types
services/core/infrastructure/models/src/models/nim_operator_types/*.py linguist-generated
# Generated SDK client bindings
sdk/python/** linguist-generated
# Generated CLI
packages/nemo_platform_ext/src/nemo_platform_ext/cli/commands/api/** linguist-generated
# Generated license files
third_party/osv-licenses*.json linguist-generated
third_party/requirements*.txt linguist-generated
# Generated Docker lockfiles
docker/locks/**/uv.lock linguist-generated
documentation/docs/audit/_snippets/output/*.jsonl filter=lfs diff=lfs merge=lfs -text
documentation/docs/generate-synthetic-data/images/* filter=lfs diff=lfs merge=lfs -text
# Files maintained by external garak project
packages/garak_api/garakapi/_config.py linguist-generated
packages/garak_api/garakapi/_plugins.py linguist-generated
packages/garak_api/garakapi/exception.py linguist-generated
packages/garak_api/garakapi/resources/plugin_cache.json linguist-generated
# Tiktoken artifact
plugins/nemo-data-designer/tiktoken-cache/* linguist-generated
e2e/testdata/customizer/prompt_completion/training.jsonl filter=lfs diff=lfs merge=lfs -text
e2e/testdata/customizer/prompt_completion/validation.jsonl filter=lfs diff=lfs merge=lfs -text
e2e/testdata/customizer/chat_format/training.jsonl filter=lfs diff=lfs merge=lfs -text
e2e/testdata/customizer/chat_format/validation.jsonl filter=lfs diff=lfs merge=lfs -text
e2e/testdata/customizer/dpo/training.jsonl filter=lfs diff=lfs merge=lfs -text
e2e/testdata/customizer/dpo/validation.jsonl filter=lfs diff=lfs merge=lfs -text