35 lines
501 B
Plaintext
35 lines
501 B
Plaintext
# ignore typical backup files
|
|
*~
|
|
\#*
|
|
~$*
|
|
.#*
|
|
*.bak
|
|
*.orig
|
|
|
|
# ignore MacOS generated files
|
|
.DS_Store
|
|
|
|
# ignore log files and logs directories
|
|
*.log
|
|
logs/
|
|
|
|
# CLion ignores
|
|
/.idea/
|
|
/.clion.source.upload.marker
|
|
|
|
# ignore local pipenv virtualenv (mainly for CI with PIPENV_VENV_IN_PROJECT=1)
|
|
/.venv/
|
|
|
|
# ignore .cache dir (mainly for CI with PIP_CACHE_DIR=.cache/pip,
|
|
# PIPENV_CACHE_DIR=.cache/pipenv)
|
|
/.cache/
|
|
|
|
# ignore Python cache files
|
|
__pycache__/
|
|
*.pyc
|
|
|
|
# archives in repo root
|
|
/*.tar
|
|
/*.tar.*
|
|
/*.zip
|