Skip to content
Snippets Groups Projects
Unverified Commit bc4941b0 authored by Ariya Hidayat's avatar Ariya Hidayat Committed by GitHub
Browse files

VS Code: Add the tasks to format code and to run linters (#16835)

parent b08f8b0a
No related branches found
No related tags found
No related merge requests found
......@@ -15,6 +15,27 @@
"kind": "build",
"isDefault": true
}
},
{
"label": "Format front-end code",
"type": "shell",
"command": "yarn prettier",
"presentation": {
"reveal": "always",
"panel": "dedicated",
"clear": true
}
},
{
"label": "Run front-end linters",
"type": "shell",
"command": "yarn lint",
"presentation": {
"reveal": "always",
"panel": "dedicated",
"clear": true
},
"problemMatcher": []
}
]
}
\ No newline at end of file
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment