Release 1.2.1#5
Merged
Merged
Conversation
There was a problem hiding this comment.
Pull request overview
This PR prepares the VS Code extension for release 1.2.1 and introduces a new setting to control whether “scan on save” scans the saved file only or triggers a workspace scan.
Changes:
- Add
contractguard.scanOnSaveScopesetting and update on-save behavior to honor it (currentFilevsworkspace). - Bump extension version to
1.2.1and update packaging output filename. - Update extension marketplace description text.
Reviewed changes
Copilot reviewed 2 out of 2 changed files in this pull request and generated 3 comments.
| File | Description |
|---|---|
vscode-src/extension.ts |
Reads scanOnSaveScope on save and schedules either a file scan or a workspace scan. |
package.json |
Bumps version/description, adds the scanOnSaveScope configuration contribution, updates the package script output name. |
💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.
Comment on lines
+123
to
+125
| "default": "workspace", | ||
| "enum": ["workspace", "currentFile"], | ||
| "description": "What to scan after saving a file: the whole workspace or just the active file." |
| "type": "string", | ||
| "default": "workspace", | ||
| "enum": ["workspace", "currentFile"], | ||
| "description": "What to scan after saving a file: the whole workspace or just the active file." |
| if (scanOnSaveScope === 'currentFile') { | ||
| controller.scheduleFileScan(document.uri.fsPath); | ||
| return; | ||
| } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
No description provided.