From 666a058825949c48da80f08a41ffa1fb9421bd95 Mon Sep 17 00:00:00 2001 From: Dalton Smith <105223895+daltzctr@users.noreply.github.com> Date: Tue, 22 Oct 2024 17:04:15 -0400 Subject: [PATCH 1/2] Add python exclusions to gitignore --- .../resources/gradle/shared/.gitignore | 78 +++++++++++++++++++ 1 file changed, 78 insertions(+) diff --git a/vscode-wpilib/resources/gradle/shared/.gitignore b/vscode-wpilib/resources/gradle/shared/.gitignore index 375359c2..6fe49eaf 100644 --- a/vscode-wpilib/resources/gradle/shared/.gitignore +++ b/vscode-wpilib/resources/gradle/shared/.gitignore @@ -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 From 96161f2d3ed478a64fef8acc57552043367edebd Mon Sep 17 00:00:00 2001 From: Dalton Smith <105223895+daltzctr@users.noreply.github.com> Date: Tue, 22 Oct 2024 18:22:58 -0400 Subject: [PATCH 2/2] Minimize changes --- .../resources/gradle/shared/.gitignore | 61 ------------------- 1 file changed, 61 deletions(-) diff --git a/vscode-wpilib/resources/gradle/shared/.gitignore b/vscode-wpilib/resources/gradle/shared/.gitignore index 6fe49eaf..86f099db 100644 --- a/vscode-wpilib/resources/gradle/shared/.gitignore +++ b/vscode-wpilib/resources/gradle/shared/.gitignore @@ -79,59 +79,6 @@ hs_err_pid* # 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 @@ -142,17 +89,9 @@ 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