Skip to content

Commit

Permalink
Add python exclusions to gitignore
Browse files Browse the repository at this point in the history
  • Loading branch information
daltzctr authored Oct 22, 2024
1 parent 5d66645 commit 666a058
Showing 1 changed file with 78 additions and 0 deletions.
78 changes: 78 additions & 0 deletions vscode-wpilib/resources/gradle/shared/.gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -75,6 +75,84 @@ hs_err_pid*
# .nfs files are created when an open file is removed but is still being accessed
.nfs*

### Python ###

# Byte-compiled / optimized / DLL files
__pycache__/
*.py[cod]
*$py.class

# C extensions
*.so

# Distribution / packaging
.Python
develop-eggs/
dist/
downloads/
eggs/
.eggs/
lib/
lib64/
parts/
sdist/
var/
wheels/
share/python-wheels/
*.egg-info/
.installed.cfg
*.egg
MANIFEST

# Unit test / coverage reports
htmlcov/
.tox/
.nox/
.coverage
.coverage.*
.cache
nosetests.xml
coverage.xml
*.cover
*.py,cover
.hypothesis/
.pytest_cache/
cover/

# Translations
*.mo
*.pot

# Django stuff:
*.log
local_settings.py
db.sqlite3
db.sqlite3-journal

# Flask stuff:
instance/
.webassets-cache

# Environments
.env
.venv
env/
venv/
ENV/
env.bak/
venv.bak/

# mypy
.mypy_cache/
.dmypy.json
dmypy.json

# pytype static type analyzer
.pytype/

# Cython debug symbols
cython_debug/

### macOS ###
# General
.DS_Store
Expand Down

0 comments on commit 666a058

Please sign in to comment.