Files
dungeon_world_data/.vscode/tasks.json
2022-07-17 20:29:17 +03:00

29 lines
483 B
JSON

{
"version": "2.0.0",
"tasks": [
{
"type": "dart",
"command": "dart",
"cwd": "",
"args": [
"doc",
"."
],
"problemMatcher": [],
"label": "dart: dart doc .",
"detail": ""
},
{
"label": "Auto-fix all fixable problems",
"type": "dart",
"command": "dart",
"detail": "dart fix --apply",
"args": [
"fix",
"--apply"
],
"problemMatcher": []
},
]
}