Skip to content

Instantly share code, notes, and snippets.

@mrrootsec
Created February 15, 2026 03:28
Show Gist options
  • Select an option

  • Save mrrootsec/929095a7ff1507a4a8ecf3d214b060e5 to your computer and use it in GitHub Desktop.

Select an option

Save mrrootsec/929095a7ff1507a4a8ecf3d214b060e5 to your computer and use it in GitHub Desktop.
Config of Filemarker extension for manual security code review
{
"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