Skip to content

Commit

Permalink
feat(github): ⭐ basic python .gitattributes with extras added
Browse files Browse the repository at this point in the history
Signed-off-by: Onuralp SEZER <thunderbirdtr@gmail.com>
  • Loading branch information
onuralpszr committed Sep 17, 2024
1 parent 59c99fc commit c84221c
Showing 1 changed file with 41 additions and 0 deletions.
41 changes: 41 additions & 0 deletions .gitattributes
Original file line number Diff line number Diff line change
@@ -1 +1,42 @@
# Basic .gitattributes for a python repo.

# 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

# Binary files
# ============
*.db binary
*.p binary
*.pkl binary
*.pickle binary
*.pyc binary export-ignore
*.pyo binary export-ignore
*.pyd binary

# Jupyter notebook
# *.ipynb text eol=lf
*.ipynb linguist-vendored

# Note: .db, .p, and .pkl files are associated
# with the python modules ``pickle``, ``dbm.*``,
# ``shelve``, ``marshal``, ``anydbm``, & ``bsddb``
# (among others).

# md files
# ========
*.md linguist-vendored

# ini files
# =========
*.ini linguist-vendored

# yaml files
# ==========
*.yaml linguist-vendored

0 comments on commit c84221c

Please sign in to comment.