-
Notifications
You must be signed in to change notification settings - Fork 31
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: fetch feature flag for Code Consistent Ignores [IDE-274] (#455)
* feat: add Snyk Code feature flag to settings and configuration - Added a new feature flag `snykCodeLsp` to enable the Snyk Code Panel Rendering via LSP. * feat: scaffolding Code panel rendering based on FF * fix: remove unnecessary view for migration * feat: add `details` field to `CodeIssueData` * feat: add new webview provider for feature flag-driven panel * feat: handle feature flag in config file to react to changes in the orgs * chore: revert providers initialisation order * revert: addition feature preview in settings and configuration * refactor: remove unnecessary `CodeDetailPanelProvider` - The conditional rendering logic can be achieved in `CodeSuggestionWebviewProvider` * fix: remove unnecessary var declaration * refactor: move feature flag fetching to `ConfigurationWatcher`
- Loading branch information
Cata
authored
May 13, 2024
1 parent
58bd8ae
commit 1d2b3b7
Showing
8 changed files
with
54 additions
and
2 deletions.
There are no files selected for viewing
This file contains 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
This file contains 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
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
export const FEATURE_FLAGS = { | ||
consistentIgnores: 'snykCodeConsistentIgnores', | ||
}; |
This file contains 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
This file contains 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
This file contains 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
This file contains 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
This file contains 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