Created
June 13, 2020 09:40
-
-
Save bdsaglam/11d31d212681ff44dc6fb1286aab7ff8 to your computer and use it in GitHub Desktop.
gitignore file for PyCharm
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| data/ | |
| # Jupyter notebook checkpoints | |
| notebooks/ | |
| *.ipynb_checkpoints/ | |
| # PyTorch Lightning | |
| *lightning_logs/ | |
| # PyCharm files | |
| .idea | |
| # Byte-compiled / optimized / DLL files | |
| __pycache__/ | |
| *.py[cod] | |
| # C extensions | |
| *.so | |
| # Distribution / packaging | |
| bin/ | |
| build/ | |
| develop-eggs/ | |
| dist/ | |
| eggs/ | |
| lib/ | |
| lib64/ | |
| parts/ | |
| sdist/ | |
| var/ | |
| *.egg-info/ | |
| .installed.cfg | |
| *.egg | |
| # Installer logs | |
| pip-log.txt | |
| pip-delete-this-directory.txt | |
| # Unit test / coverage reports | |
| .tox/ | |
| .coverage | |
| .cache | |
| nosetests.xml | |
| coverage.xml | |
| *.pytest_cache | |
| # OSX | |
| .DS_Store |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment