diff options
author | Nguyễn Gia Phong <mcsinyx@disroot.org> | 2020-09-19 11:12:54 +0700 |
---|---|---|
committer | Nguyễn Gia Phong <mcsinyx@disroot.org> | 2020-09-19 11:12:54 +0700 |
commit | 12b798ac0058fefeb315f98f5385d96ccb322faa (patch) | |
tree | a83509c7c257aed00e8c8ef5c760037e4d4d9273 /.gitignore | |
parent | d97e1a1294ba3bc542b0611b39f86b218de935b0 (diff) | |
download | brutalmaze-12b798ac0058fefeb315f98f5385d96ccb322faa.tar.gz |
Employ linters
Diffstat (limited to '.gitignore')
-rw-r--r-- | .gitignore | 109 |
1 files changed, 104 insertions, 5 deletions
diff --git a/.gitignore b/.gitignore index b537ddb..894a44c 100644 --- a/.gitignore +++ b/.gitignore @@ -1,5 +1,104 @@ -brutalmaze.egg-info -build -dist -__pycache__ -*.pyc +# Byte-compiled / optimized / DLL files +__pycache__/ +*.py[cod] +*$py.class + +# C extensions +*.so + +# Distribution / packaging +.Python +build/ +develop-eggs/ +dist/ +downloads/ +eggs/ +.eggs/ +lib/ +lib64/ +parts/ +sdist/ +var/ +wheels/ +*.egg-info/ +.installed.cfg +*.egg +MANIFEST + +# PyInstaller +# Usually these files are written by a python script from a template +# before PyInstaller builds the exe, so as to inject date/other infos into it. +*.manifest +*.spec + +# Installer logs +pip-log.txt +pip-delete-this-directory.txt + +# Unit test / coverage reports +htmlcov/ +.tox/ +.coverage +.coverage.* +.cache +nosetests.xml +coverage.xml +*.cover +.hypothesis/ +.pytest_cache/ + +# Translations +*.mo +*.pot + +# Django stuff: +*.log +local_settings.py +db.sqlite3 + +# Flask stuff: +instance/ +.webassets-cache + +# Scrapy stuff: +.scrapy + +# Sphinx documentation +docs/_build/ + +# PyBuilder +target/ + +# Jupyter Notebook +.ipynb_checkpoints + +# pyenv +.python-version + +# celery beat schedule file +celerybeat-schedule + +# SageMath parsed files +*.sage.py + +# Environments +.env +.venv +env/ +venv/ +ENV/ +env.bak/ +venv.bak/ + +# Spyder project settings +.spyderproject +.spyproject + +# Rope project settings +.ropeproject + +# mkdocs documentation +/site + +# mypy +.mypy_cache/ |