From b8e76fca0a2b2c3dd1eae571609175aab0e1722f Mon Sep 17 00:00:00 2001 From: Knut Funkel Date: Fri, 6 Sep 2024 14:08:26 +0200 Subject: [PATCH] feat: move delta preview to settings [IDE-622] (#529) * chore: update UI to correspond to design * fix: updating UI to follow design --- package.json | 19 +++++++++++++++++-- 1 file changed, 17 insertions(+), 2 deletions(-) diff --git a/package.json b/package.json index 94cb67f8a..c40188c01 100644 --- a/package.json +++ b/package.json @@ -168,11 +168,26 @@ "description": "Severity issues to display.", "scope": "window" }, + "snyk.allIssuesVsNetNewIssues": { + "type": "string", + "default": "All issues", + "description": "Specifies whether to see all issues or only net new issues. Only applies to Code Security and Code Quality.", + "enum": [ + "All issues", + "Net new issues" + ], + "enumDescriptions": [ + "Shows all issues that have been identified, including both new and existing issues.", + "Shows only new issues that have been introduced in the latest scan, filtering out previously known issues." + ], + "markdownDescription": "Specifies whether to see all issues or only net new issues. Only applies to Code Security and Code Quality.\n\n", + "order": 6 + }, "snyk.advanced.additionalParameters": { - "order": 6, "type": "string", "description": "Parameters to pass to Snyk CLI for Open Source security tests.", - "scope": "window" + "scope": "window", + "order": 7 } } },