-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy path.gitattributes
47 lines (41 loc) · 1 KB
/
.gitattributes
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
*.py ident
* text=auto eol=lf
libhockeydata/versioninfo.py ident
* text eol=lf
# Basic .gitattributes for a python repo.
# Source files
# ============
*.pxd text diff=python eol=lf
*.py text diff=python eol=lf
*.py3 text diff=python eol=lf
*.pyw text diff=python eol=lf
*.pyx text diff=python eol=lf
*.pyz text diff=python eol=lf
*.pyi text diff=python eol=lf
##### Language
# PHP
*.php text diff=php eol=lf
*.phpt text diff=php eol=lf
*.phtml text diff=php eol=lf
*.htm text diff=html eol=lf
*.html text diff=html eol=lf
*.xml text diff=xml eol=lf
*.twig text eol=lf
.htaccess text eol=lf
.ht text eol=lf
*.phar binary
# Binary files
# ============
*.db binary
*.p binary
*.pkl binary
*.pickle binary
*.pyc binary
*.pyd binary
*.pyo binary
# Jupyter notebook
*.ipynb text eol=lf
# Note: .db, .p, and .pkl files are associated
# with the python modules ``pickle``, ``dbm.*``,
# ``shelve``, ``marshal``, ``anydbm``, & ``bsddb``
# (among others).