-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.gitattributes
More file actions
71 lines (64 loc) · 1.52 KB
/
.gitattributes
File metadata and controls
71 lines (64 loc) · 1.52 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
# Gitattributes file
# Details per file setting:
# text These files should be normalized (i.e. convert CRLF to LF).
# binary These files are binary and should be left untouched.
# Note that binary is a macro for -text -diff.
# Auto detect
## Handle line endings automatically for files detected as
## text and leave all files detected as binary untouched.
## This will handle all files NOT defined below.
* text=auto
# Source files
# ============
*.pxd text diff=python
*.py text diff=python
*.py3 text diff=python
*.pyw text diff=python
*.pyx text diff=python
*.pyz text diff=python
*.pyi text diff=python
# Documentation
# =============
*.md text diff=markdown
*.txt text
LICENSE text
README text
CODEOWNERS text
# Config files
Manifest.in text
.gitattributes text
*.*rc text
*.*ignore text
*.toml text
*.yaml text
*.yml text
Makefile text
Dockerfile text
*.nix text
flake.lock text
.env text
pytest.ini text
.mypy.ini text
# Binary files
# ============
# Note: .db, .p, and .pkl files are associated
# with the python modules ``pickle``, ``dbm.*``,
# ``shelve``, ``marshal``, ``anydbm``, & ``bsddb``
# (among others).
*.db binary
*.p binary
*.pkl binary
*.pickle binary
*.pyc binary export-ignore
*.pyo binary export-ignore
*.pyd binary
# Assets
# ========
*.xcf binary
*.png binary
*.jpg binary
*.jpeg binary
*.csv text
*.json text
*.h264 binary
*.parquet binary