Skip to content

Template Sync: Fix glob pattern for .pyc files in .vscodeignore #656

@github-actions

Description

@github-actions

🔄 Template Sync Required

Changes from the upstream vscode-python-tools-extension-template have not yet been incorporated into this repository.

Source PR

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 **/.pyc should 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

Metadata

Metadata

Labels

No labels
No labels

Type

No type

Projects

No projects

Milestone

No milestone

Relationships

None yet

Development

No branches or pull requests

Issue actions