Skip to content

Commit 666a058

Browse files
authored
Add python exclusions to gitignore
1 parent 5d66645 commit 666a058

File tree

1 file changed

+78
-0
lines changed

1 file changed

+78
-0
lines changed

vscode-wpilib/resources/gradle/shared/.gitignore

Lines changed: 78 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -75,6 +75,84 @@ hs_err_pid*
7575
# .nfs files are created when an open file is removed but is still being accessed
7676
.nfs*
7777

78+
### Python ###
79+
80+
# Byte-compiled / optimized / DLL files
81+
__pycache__/
82+
*.py[cod]
83+
*$py.class
84+
85+
# C extensions
86+
*.so
87+
88+
# Distribution / packaging
89+
.Python
90+
develop-eggs/
91+
dist/
92+
downloads/
93+
eggs/
94+
.eggs/
95+
lib/
96+
lib64/
97+
parts/
98+
sdist/
99+
var/
100+
wheels/
101+
share/python-wheels/
102+
*.egg-info/
103+
.installed.cfg
104+
*.egg
105+
MANIFEST
106+
107+
# Unit test / coverage reports
108+
htmlcov/
109+
.tox/
110+
.nox/
111+
.coverage
112+
.coverage.*
113+
.cache
114+
nosetests.xml
115+
coverage.xml
116+
*.cover
117+
*.py,cover
118+
.hypothesis/
119+
.pytest_cache/
120+
cover/
121+
122+
# Translations
123+
*.mo
124+
*.pot
125+
126+
# Django stuff:
127+
*.log
128+
local_settings.py
129+
db.sqlite3
130+
db.sqlite3-journal
131+
132+
# Flask stuff:
133+
instance/
134+
.webassets-cache
135+
136+
# Environments
137+
.env
138+
.venv
139+
env/
140+
venv/
141+
ENV/
142+
env.bak/
143+
venv.bak/
144+
145+
# mypy
146+
.mypy_cache/
147+
.dmypy.json
148+
dmypy.json
149+
150+
# pytype static type analyzer
151+
.pytype/
152+
153+
# Cython debug symbols
154+
cython_debug/
155+
78156
### macOS ###
79157
# General
80158
.DS_Store

0 commit comments

Comments
 (0)