mirror of
https://github.com/Dr-Blank/Vaani.git
synced 2026-01-20 09:09:32 +00:00
something
This commit is contained in:
parent
dbf4ce1959
commit
a720c977c2
115 changed files with 8819 additions and 1 deletions
37
.vscode/tasks.json
vendored
Normal file
37
.vscode/tasks.json
vendored
Normal file
|
|
@ -0,0 +1,37 @@
|
|||
{
|
||||
"version": "2.0.0",
|
||||
"tasks": [
|
||||
{
|
||||
"icon": { "id": "eye-watch", "color": "terminal.ansiYellow" },
|
||||
"label": "build_runner watch",
|
||||
"type": "shell",
|
||||
"command": "dart run build_runner watch",
|
||||
"group": {
|
||||
"kind": "build",
|
||||
"isDefault": true
|
||||
},
|
||||
"detail": "Running build_runner watch for code generation",
|
||||
"presentation": {
|
||||
"revealProblems": "onProblem",
|
||||
"reveal": "silent",
|
||||
"panel": "dedicated"
|
||||
},
|
||||
"runOptions": {
|
||||
"instanceLimit": 1,
|
||||
"runOn": "folderOpen",
|
||||
"reevaluateOnRerun": true
|
||||
},
|
||||
"problemMatcher": {
|
||||
"owner": "dart",
|
||||
"fileLocation": ["relative", "${workspaceFolder}"],
|
||||
"pattern": {
|
||||
"regexp": "^(.*):(\\d+):(\\d+):\\s+(.*)$",
|
||||
"file": 1,
|
||||
"line": 2,
|
||||
"column": 3,
|
||||
"message": 4
|
||||
}
|
||||
}
|
||||
}
|
||||
]
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue