-
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy path.gitattributes
More file actions
90 lines (75 loc) · 1.63 KB
/
Copy path.gitattributes
File metadata and controls
90 lines (75 loc) · 1.63 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
87
88
89
90
# =============================================================================
# Git Attributes Configuration
# =============================================================================
# Set default behaviour for all files
* text=auto
# Source code
*.py text eol=lf diff=python
*.pyx text eol=lf diff=python
*.pyi text eol=lf diff=python
# Configuration files
*.ini text eol=lf
*.cfg text eol=lf
*.toml text eol=lf
*.yaml text eol=lf
*.yml text eol=lf
*.json text eol=lf
.editorconfig text eol=lf
.gitattributes text eol=lf
.gitignore text eol=lf
# Documentation
*.md text eol=lf diff=markdown
*.rst text eol=lf
*.txt text eol=lf
LICENSE text eol=lf
CHANGELOG* text eol=lf
README* text eol=lf
# Scripts
*.sh text eol=lf
*.bash text eol=lf
Makefile text eol=lf
Makefile.* text eol=lf
# Windows scripts
*.bat text eol=crlf
*.cmd text eol=crlf
*.ps1 text eol=lf
# Docker
Dockerfile text eol=lf
*.dockerfile text eol=lf
docker-compose*.yml text eol=lf
# CI/CD
.github/** text eol=lf
.gitlab-ci.yml text eol=lf
# Archives (binary)
*.7z binary
*.gz binary
*.tar binary
*.tgz binary
*.zip binary
# Python compiled files (binary)
*.pyc binary
*.pyo binary
*.pyd binary
# Wheel files
*.whl binary
# Images (binary)
*.png binary
*.jpg binary
*.jpeg binary
*.gif binary
*.ico binary
*.svg binary
# Fonts (binary)
*.woff binary
*.woff2 binary
*.ttf binary
*.eot binary
*.otf binary
# Git LFS (if used)
*.json.br filter=lfs diff=lfs merge=lfs -text
# Linguist overrides (for GitHub language detection)
*.py linguist-language=Python
*.pyi linguist-language=Python
tst/** linguist-vendored=false
doc/** linguist-documentation=true
htmlcov/** linguist-generated=true