-
Notifications
You must be signed in to change notification settings - Fork 45
Open
Description
🔄 Template Sync Required
Changes from the upstream vscode-python-tools-extension-template have not yet been incorporated into this repository.
Source PR
- Fix glob pattern for
.pycfiles in.vscodeignorevscode-python-tools-extension-template#216 — Fix glob pattern for.pycfiles in.vscodeignore
Summary
The template corrected a broken glob pattern in .vscodeignore. The pattern **/.pyc does not match any files (it would match a path component literally named .pyc), while the correct pattern **/*.pyc matches all compiled Python bytecode files. This fix ensures .pyc files are properly excluded from the packaged extension.
Files with missing changes
.vscodeignore: The entry**/.pycshould be**/*.pyc. The current file contains the incorrect pattern.
Suggested fix
-**/.pyc
+**/*.pyc🤖 This issue was auto-generated by the extension-template-sync workflow.
Generated by Extension Template Sync
Reactions are currently unavailable