diff options
Diffstat (limited to '.gitignore')
-rw-r--r-- | .gitignore | 50 |
1 files changed, 50 insertions, 0 deletions
diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..bc58411 --- /dev/null +++ b/.gitignore @@ -0,0 +1,50 @@ +# byte-compiled +__pycache__/ +*.py[cod] + +# direnv +*.envrc + +# distribution / packaging +.Python +env/ +build/ +develop-eggs/ +dist/ +downloads/ +eggs/ +.eggs/ +lib/ +lib64/ +parts/ +sdist/ +var/ +temp/ +*.egg-info/ +.installed.cfg +*.egg +*.p + +# emacs +flycheck_*.el +.projectile +*.#* + +# images +*.jpg +*.gif +*.png +!logo/logo.png +*.svg +*.ico + +# tests / coverage reports +.coverage +.coverage.* +.cache +coverage.xml +*,cover +.pytest_cache/* + +# vim +*.sw? |