diff options
author | Daniel Baumann <daniel@debian.org> | 2024-11-21 15:00:40 +0100 |
---|---|---|
committer | Daniel Baumann <daniel@debian.org> | 2024-11-21 15:00:40 +0100 |
commit | 012d9cb5faed22cb9b4151569d30cc08563b02d1 (patch) | |
tree | fd901b9c231aeb8afa713851f23369fa4a1af2b3 /.gitattributes | |
parent | Initial commit. (diff) | |
download | pysilfont-012d9cb5faed22cb9b4151569d30cc08563b02d1.tar.xz pysilfont-012d9cb5faed22cb9b4151569d30cc08563b02d1.zip |
Adding upstream version 1.8.0.upstream/1.8.0upstream
Signed-off-by: Daniel Baumann <daniel@debian.org>
Diffstat (limited to '.gitattributes')
-rw-r--r-- | .gitattributes | 42 |
1 files changed, 42 insertions, 0 deletions
diff --git a/.gitattributes b/.gitattributes new file mode 100644 index 0000000..2e2cd8f --- /dev/null +++ b/.gitattributes @@ -0,0 +1,42 @@ +# .gitattributes for pysilfont + +# Based on https://github.com/alexkaratarakis/gitattributes/blob/master/Python.gitattributes +# plus additions for pysilfont + +# Designed to tell git how to best deal with certain file formats +# The goal for eols is to have LF in the repo and platform-specific +# endings, when appropriate, in the working copy on all platforms. +# To tweak to your particular needs, +# see https://git-scm.com/book/en/Customizing-Git-Git-Attributes + +# The following causes git to auto detect text files which will have eol +# conversion applied according to core.autocrlf and core.eol +* text=auto + + +# Text files +# ============ +*.md text +*.fea* text +*.pxd text +*.py text +*.py3 text +*.pyw text +*.pyx text +*.sh text +*.txt text + +# Binary files +# ============ +*.db binary +*.p binary +*.pkl binary +*.pyc binary +*.pyd binary +*.pyo binary +*.png binary + +# Note: .db, .p, and .pkl files are associated +# with the python modules ``pickle``, ``dbm.*``, +# ``shelve``, ``marshal``, ``anydbm``, & ``bsddb`` +# (among others). |