-
Notifications
You must be signed in to change notification settings - Fork 1.6k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
refactor: update, reformat .gitignore
Restructure .gitignore: Consolidate/group entries, (re)use dir formatting from sample Python.gitignore, add comments. + Add .python-version for working with Pyenv.
- Loading branch information
Showing
1 changed file
with
44 additions
and
41 deletions.
There are no files selected for viewing
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,61 +1,64 @@ | ||
# Partially based on | ||
# https://github.com/github/gitignore/blob/main/Python.gitignore | ||
|
||
# OS-specific | ||
.DS_Store | ||
|
||
# IDEs | ||
.idea | ||
.project | ||
.pydevproject | ||
.sublime-project | ||
.vscode | ||
|
||
# Python dev tooling | ||
.mr.developer.cfg | ||
.python-version | ||
|
||
# Cache, temp. files | ||
__pycache__/ | ||
.cache/ | ||
*.py[cod] | ||
*~ | ||
|
||
# C extensions | ||
*.so | ||
|
||
# Packages | ||
*.egg | ||
*.egg-info | ||
*.tar.gz | ||
dist | ||
build | ||
eggs | ||
.eggs | ||
parts | ||
bin | ||
var | ||
sdist | ||
develop-eggs | ||
# Distribution / packaging | ||
build/ | ||
develop-eggs/ | ||
dist/ | ||
eggs/ | ||
.eggs/ | ||
lib/ | ||
lib64/ | ||
parts/ | ||
sdist/ | ||
var/ | ||
*.egg-info/ | ||
.installed.cfg | ||
lib | ||
lib64 | ||
__pycache__ | ||
.cache/ | ||
.vscode | ||
*.egg | ||
|
||
# Sublime | ||
.sublime-project | ||
# System misc. | ||
bin | ||
*.tar.gz | ||
|
||
# Installer logs | ||
pip-log.txt | ||
|
||
# Unit test / coverage reports | ||
.tox/ | ||
.coverage | ||
.tox | ||
nosetests.xml | ||
|
||
# Media files for testing | ||
tests/media/ | ||
|
||
# Translations | ||
*.mo | ||
|
||
# Mr Developer | ||
.mr.developer.cfg | ||
.project | ||
.pydevproject | ||
|
||
# Temp files | ||
*~ | ||
|
||
# Pipy codes | ||
.pypirc | ||
|
||
# Mac | ||
.DS_Store | ||
|
||
# JetBrains | ||
.idea | ||
|
||
# Tests | ||
tests/media | ||
|
||
# Documentation | ||
docs/build/ | ||
|
||
# Publishing | ||
.pypirc |
This comment was marked as spam.
Sorry, something went wrong.