-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.gitattributes
More file actions
executable file
·36 lines (32 loc) · 703 Bytes
/
.gitattributes
File metadata and controls
executable file
·36 lines (32 loc) · 703 Bytes
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
# Default: normalize line endings to LF
* text=auto eol=lf
# Python sources
*.py text eol=lf diff=python
*.pyi text eol=lf diff=python
# Config/data files
*.cfg text eol=lf
*.ini text eol=lf
*.toml text eol=lf
*.yaml text eol=lf
*.yml text eol=lf
*.json text eol=lf
*.md text eol=lf
*.rst text eol=lf
*.txt text eol=lf
*.env text eol=lf
# Binary files (prevent corruption)
*.db binary
*.sqlite binary
*.png binary
*.jpg binary
*.jpeg binary
*.gif binary
*.ico binary
*.whl binary
# Export-ignore (excluded from git archive / GitHub source downloads)
.gitattributes export-ignore
.gitignore export-ignore
.github/ export-ignore
tests/ export-ignore
junit.xml export-ignore
coverage.xml export-ignore