Review and manage your Monday Projects, Boards and Items directly in VS Code
This extension allows you to review and manage Monday Projects, Boards and Items directly in VS Code. The support includes:
- Authenticating and connecting VS Code to Monday.
- Listing and browsing Boards, Projects, Items and Users from within VS Code.
- Hover cards for mentioned users and items.
- Completion suggestions for users and items.
- Code actions to create items from "todo" comments.
- Open items in Monday.com from VS Code.
It's easy to get started with Monday VSCode Extension. Simply follow these steps to get started.
- Install the application on your Monday account
- Download the extension from the marketplace.
- Reload VS Code after the installation (click the reload button next to the extension).
- Authenticate the extension with the application from VS Code.
There are several settings that can be used to configure the extension.
"mondayExtension.createIssueTriggers": {
"type": "array",
"items": {
"type": "string",
"description": "String that enables the 'Create item from comment' code action. Should not container whitespace."
},
"default": [
"TODO",
"todo",
"BUG",
"FIXME",
"ISSUE",
"HACK"
],
"description": "Strings that will cause the 'Create Item from comment' code action to show."
},
"mondayExtension.createInsertFormat": {
"type": "string",
"enum": [
"number",
"url"
],
"default": "number",
"description": "Controls whether an issue number (ex. #1234) or a full url (ex. https://your-monday-account-name.monday.com/boards/632180646/pulses/633712793) is inserted when the Create Item code action is run."
},
"mondayExtension.issueCompletions.enabled": {
"type": "boolean",
"default": true,
"description": "Controls whether completion suggestions are shown for issues."
},
"mondayExtension.userCompletions.enabled": {
"type": "boolean",
"default": true,
"description": "Controls whether completion suggestions are shown for users."
},
To view additional settings for the extension, you can open VS Code settings and search for "mondayExtension".
This extension is still in development, so please refer to our issue tracker for known issues, and please contribute with additional information if you encounter an issue yourself.
See our wiki for our FAQ.