DeleteFindings
Delete findings from your project.
Dry run is default: No findings are deleted unless you specify --no-dry-run
.
Example
| reptor deletefindings --title-contains "delete me" # Delete findings matching the search query
reptor deletefindings --exclude-title-contains "leave me" # Exclude findings with search query
reptor deletefindings --no-dry-run # Delete all findings, no dry run
|
Usage
1
2
3
4
5
6
7
8
9
10
11
12
13 | usage: reptor deletefindings [-h] [--title-contains SEARCHTERM]
[--exclude-title-contains SEARCHTERM]
[--no-dry-run]
Deletes findings by title
optional arguments:
-h, --help show this help message and exit
--title-contains SEARCHTERM
Match string in title
--exclude-title-contains SEARCHTERM
Matched strings in title are not deleted
--no-dry-run Do delete findings, default is dry-run
|