Skip to content

Commit

Permalink
style: add category property to commands
Browse files Browse the repository at this point in the history
  • Loading branch information
nriviere-gitguardian committed Nov 13, 2024
1 parent f2e0a28 commit a81f467
Showing 1 changed file with 15 additions and 7 deletions.
22 changes: 15 additions & 7 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -55,35 +55,43 @@
"commands": [
{
"command": "gitguardian.quota",
"title": "gitguardian: Show quota"
"title": "Show quota",
"category": "GitGuardian"
},
{
"command": "gitguardian.ignore",
"title": "gitguardian: Ignore last found incidents"
"title": "Ignore last found incidents",
"category": "GitGuardian"
},
{
"command": "gitguardian.authenticate",
"title": "gitguardian: Authenticate"
"title": "Authenticate",
"category": "GitGuardian"
},
{
"command": "gitguardian.logout",
"title": "gitguardian: logout"
"title": "logout",
"category": "GitGuardian"
},
{
"command": "gitguardian.showOutput",
"title": "Show Output"
"title": "Show Output",
"category": "GitGuardian"
},
{
"command": "gitguardian.openSidebar",
"title": "Open Sidebar"
"title": "Open Sidebar",
"category": "GitGuardian"
},
{
"command": "gitguardian.openProblems",
"title": "Open Problems"
"title": "Open Problems",
"category": "GitGuardian"
},
{
"command": "gitguardian.refreshQuota",
"title": "Refresh Quota",
"category": "GitGuardian",
"icon": {
"light": "images/refresh-light.svg",
"dark": "images/refresh-dark.svg"
Expand Down

0 comments on commit a81f467

Please sign in to comment.