-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Adapt FixPlugin for library for applying of SARIF fix patches (#464)
### What's done: * Adapt FixPlugin for library for applying of SARIF fix patches
- Loading branch information
1 parent
e557722
commit cf1d71d
Showing
4 changed files
with
62 additions
and
21 deletions.
There are no files selected for viewing
16 changes: 16 additions & 0 deletions
16
save-common/src/commonMain/kotlin/com/saveourtool/save/core/config/FixFormats.kt
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,16 @@ | ||
/** | ||
* Classes that describe format of expected and actual fixes | ||
*/ | ||
|
||
@file:Suppress("FILE_NAME_MATCH_CLASS", "MatchingDeclarationName") | ||
|
||
package com.saveourtool.save.core.config | ||
|
||
/** | ||
* Possible formats of actual set of fixes, provided by user | ||
*/ | ||
enum class ActualFixFormat { | ||
IN_PLACE, | ||
SARIF, | ||
; | ||
} |
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