Created
February 15, 2026 03:28
-
-
Save mrrootsec/929095a7ff1507a4a8ecf3d214b060e5 to your computer and use it in GitHub Desktop.
Config of Filemarker extension for manual security code review
This file contains hidden or 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
| { | |
| "markerTypes": [ | |
| { | |
| "id": "secure", | |
| "badge": "π", | |
| "color": "editorHint.foreground", | |
| "label": "Secure" | |
| }, | |
| { | |
| "id": "done", | |
| "badge": "β ", | |
| "color": "gitDecoration.addedResourceForeground", | |
| "label": "Done" | |
| }, | |
| { | |
| "id": "in-progress", | |
| "badge": "π", | |
| "color": "gitDecoration.addedResourceForeground", | |
| "label": "In Progress" | |
| }, | |
| { | |
| "id": "pending", | |
| "badge": "π‘", | |
| "color": "gitDecoration.modifiedResourceForeground", | |
| "label": "Pending" | |
| }, | |
| { | |
| "id": "important", | |
| "badge": "β", | |
| "color": "gitDecoration.stageDeletedResourceForeground", | |
| "label": "Important" | |
| }, | |
| { | |
| "id": "review", | |
| "badge": "π΅", | |
| "color": "editorInfo.foreground", | |
| "label": "Needs Review" | |
| }, | |
| { | |
| "id": "question", | |
| "badge": "β", | |
| "color": "editorHint.background", | |
| "label": "Question" | |
| }, | |
| { | |
| "id": "ignore", | |
| "badge": "π«", | |
| "color": "gitDecoration.ignoredResourceForeground", | |
| "label": "Ignore" | |
| } | |
| ], | |
| "lineHighlightTypes": [ | |
| { | |
| "id": "highlight-yellow", | |
| "color": "rgba(255, 235, 59, 0.3)", | |
| "label": "Suspicious" | |
| }, | |
| { | |
| "id": "highlight-green", | |
| "color": "rgba(76, 175, 80, 0.3)", | |
| "label": "Looks Safe" | |
| }, | |
| { | |
| "id": "highlight-blue", | |
| "color": "rgba(33, 150, 243, 0.3)", | |
| "label": "Needs Review" | |
| }, | |
| { | |
| "id": "highlight-red", | |
| "color": "rgba(244, 67, 54, 0.3)", | |
| "label": "Bad Code" | |
| }, | |
| { | |
| "id": "highlight-purple", | |
| "color": "rgba(156, 39, 176, 0.3)", | |
| "label": "Confusing" | |
| } | |
| ], | |
| "lineHighlights": {} | |
| } | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment