Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

refactor: restructure .gitignore #2185

Merged
merged 1 commit into from
May 27, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
85 changes: 44 additions & 41 deletions .gitignore
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
Loading