Update versioninfo.py
[Neo-Hockey-Test.git] / .gitattributes
blobb8ff9e4e0938cdec68a7d4e6d79ba23ea93d88ee
1 *.py ident
2 * text=auto eol=lf
3 libhockeydata/versioninfo.py ident
4 * text eol=lf
6 # Basic .gitattributes for a python repo.
8 # Source files
9 # ============
10 *.pxd    text diff=python eol=lf
11 *.py     text diff=python eol=lf
12 *.py3    text diff=python eol=lf
13 *.pyw    text diff=python eol=lf
14 *.pyx    text diff=python eol=lf
15 *.pyz    text diff=python eol=lf
16 *.pyi    text diff=python eol=lf
18 ##### Language
19 # PHP
20 *.php     text diff=php eol=lf
21 *.phpt    text diff=php eol=lf
22 *.phtml   text diff=php eol=lf
23 *.htm     text diff=html eol=lf
24 *.html    text diff=html eol=lf
25 *.xml     text diff=xml eol=lf
26 *.twig    text eol=lf
27 .htaccess text eol=lf
28 .ht       text eol=lf
29 *.phar    binary
31 # Binary files
32 # ============
33 *.db     binary
34 *.p      binary
35 *.pkl    binary
36 *.pickle binary
37 *.pyc    binary
38 *.pyd    binary
39 *.pyo    binary
41 # Jupyter notebook
42 *.ipynb  text eol=lf
44 # Note: .db, .p, and .pkl files are associated
45 # with the python modules ``pickle``, ``dbm.*``,
46 # ``shelve``, ``marshal``, ``anydbm``, & ``bsddb``
47 # (among others).