nextcloud-breeze-dark/.vscode/tasks.json

29 lines
767 B
JSON

{
// See https://go.microsoft.com/fwlink/?LinkId=733558
// for the documentation about the tasks.json format
"version": "2.0.0",
"tasks": [
{
"type": "npm",
"script": "lint:scss",
"problemMatcher": [],
"label": "npm: lint:scss",
"detail": "stylelint css/"
},
{
"type": "npm",
"script": "prettier",
"problemMatcher": [],
"label": "npm: prettier",
"detail": "prettier -c css/ js/"
},
{
"type": "npm",
"script": "install",
"problemMatcher": [],
"label": "npm: install",
"detail": "install dependencies from package"
}
]
}