-
-
Notifications
You must be signed in to change notification settings - Fork 93
Expand file tree
/
Copy path.gitattributes
More file actions
86 lines (83 loc) · 2.91 KB
/
Copy path.gitattributes
File metadata and controls
86 lines (83 loc) · 2.91 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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
# Binary files — prevent CRLF conversion on Windows
*.pdf binary
*.PDF binary
# Source files — force LF line endings on all platforms.
# Without this, Git for Windows converts LF→CRLF on checkout, and `gofmt -l`,
# `cargo fmt --check`, `dotnet format`, and eslint all reject the result.
*.rs text eol=lf
*.go text eol=lf
*.py text eol=lf
*.cs text eol=lf
*.ts text eol=lf
*.tsx text eol=lf
*.js text eol=lf
*.mjs text eol=lf
*.cjs text eol=lf
*.json text eol=lf
*.toml text eol=lf
*.yml text eol=lf
*.yaml text eol=lf
*.md text eol=lf
*.sh text eol=lf
Makefile text eol=lf
# Windows-specific files that expect CRLF
*.bat text eol=crlf
*.cmd text eol=crlf
*.ps1 text eol=crlf
# Packagist dist slimming (git-archive honors export-ignore).
# `composer require oxide/pdf-oxide` only needs the PHP source, the
# cdef header, composer.json, README, and LICENSE-*. Without these
# rules the dist tarball was ~36 MB (the whole monorepo).
/bench export-ignore
/benches export-ignore
/csharp export-ignore
/docs export-ignore
/examples export-ignore
/go export-ignore
/hooks export-ignore
/java export-ignore
/js export-ignore
/lib export-ignore
/models export-ignore
/pdf_oxide_cli export-ignore
/pdf_oxide_jni export-ignore
/pdf_oxide_mcp export-ignore
/python export-ignore
/ruby export-ignore
/scripts export-ignore
/src export-ignore
/target export-ignore
/tests export-ignore
/tools export-ignore
/training export-ignore
/wasm-pkg export-ignore
/.github export-ignore
# Top-level config that only matters to the Rust/Python/Node toolchains
/Cargo.toml export-ignore
/Cargo.lock export-ignore
/build.rs export-ignore
/cbindgen.toml export-ignore
/pyproject.toml export-ignore
/uv.lock export-ignore
/Makefile export-ignore
/codecov.yml export-ignore
/deny.toml export-ignore
/rustfmt.toml export-ignore
/clippy.toml export-ignore
/osv-scanner.toml export-ignore
/rylai.toml export-ignore
/install.ps1 export-ignore
/install.sh export-ignore
/llms.txt export-ignore
/AGENTS.md export-ignore
/CHANGELOG.md export-ignore
/CONTRIBUTING.md export-ignore
/CODE_OF_CONDUCT.md export-ignore
/SECURITY.md export-ignore
/.editorconfig export-ignore
/.cargo export-ignore
/.devin export-ignore
/.githooks export-ignore
/.models export-ignore
/.pre-commit-config.yaml export-ignore
/.taplo.toml export-ignore