Skip to content

Commit

Permalink
chore: renamed "Known issues" to "All issues" in the setting for conf…
Browse files Browse the repository at this point in the history
…iguring delta findings (#502)
  • Loading branch information
Arvi3d authored Jul 25, 2024
1 parent e862dee commit 541a41e
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
10 changes: 5 additions & 5 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -242,19 +242,19 @@
"propertyNames": true,
"properties": {}
},
"snyk.netNewVsKnownIssues": {
"snyk.netNewVsAllIssues": {
"type": "string",
"default": "Known issues",
"description": "Specifies whether to see only net new issues or known issues. Only applies to Code Security and Code Quality.",
"default": "All issues",
"description": "Specifies whether to see only net new issues or all issues. Only applies to Code Security and Code Quality.",
"enum": [
"Known issues",
"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 only net new issues or known issues. Only applies to Code Security and Code Quality.\n\nNote: this is an experimental feature. Please reach out to [support.snyk.io](https://support.snyk.io) for more details."
"markdownDescription": "Specifies whether to see only net new issues or all issues. Only applies to Code Security and Code Quality.\n\nNote: this is an experimental feature. Please reach out to [support.snyk.io](https://support.snyk.io) for more details."
}
}
},
Expand Down
2 changes: 1 addition & 1 deletion src/snyk/common/constants/settings.ts
Original file line number Diff line number Diff line change
Expand Up @@ -27,4 +27,4 @@ export const TRUSTED_FOLDERS = `${CONFIGURATION_IDENTIFIER}.trustedFolders`;
export const FOLDER_CONFIGS = `${CONFIGURATION_IDENTIFIER}.folderConfigs`;
export const SCANNING_MODE = `${CONFIGURATION_IDENTIFIER}.scanningMode`;

export const DELTA_FINDINGS = `${CONFIGURATION_IDENTIFIER}.netNewVsKnownIssues`;
export const DELTA_FINDINGS = `${CONFIGURATION_IDENTIFIER}.netNewVsAllIssues`;

0 comments on commit 541a41e

Please sign in to comment.