37 lines
957 B
Plaintext
37 lines
957 B
Plaintext
# Set the default behavior, in case people don't have core.autocrlf set.
|
|
* text=auto
|
|
# Explicitly declare text files you want to always be normalized and converted
|
|
# to native line endings on checkout.
|
|
# *.c text
|
|
# *.h text
|
|
# Declare files that will always have CRLF line endings on checkout.
|
|
# Source files
|
|
# ============
|
|
*.pxd text eol=crlf
|
|
*.py text eol=crlf
|
|
*.py3 text eol=crlf
|
|
*.pyw text eol=crlf
|
|
*.pyx text eol=crlf
|
|
pyfa.py text eol=lf
|
|
# Denote all files that are truly binary and should not be modified.
|
|
# Binary files
|
|
# ============
|
|
*.db binary
|
|
*.p binary
|
|
*.pkl binary
|
|
*.pyc binary
|
|
*.pyd binary
|
|
*.pyo binary
|
|
# Note: .db, .p, and .pkl files are associated
|
|
# with the python modules ``pickle``, ``dbm.*``,
|
|
# ``shelve``, ``marshal``, ``anydbm``, & ``bsddb``
|
|
# (among others).
|
|
# Denote all files that are truly binary and should not be modified.
|
|
# Image files
|
|
# ============
|
|
*.png binary
|
|
*.jpg binary
|
|
*.icns binary
|
|
*.ico binary
|
|
|