tweak gitignore and vscode config (#1433)

* tweak gitignore and vscode config

* restore settings

---------

Co-authored-by: bggRGjQaUbCoE <githubaccount56556@proton.me>
This commit is contained in:
VillagerTom
2025-10-03 11:48:28 +08:00
committed by GitHub
parent bdbd6cd377
commit 94760a4136
3 changed files with 63 additions and 10 deletions

25
.vscode/tasks.json vendored Normal file
View File

@@ -0,0 +1,25 @@
{
"version": "2.0.0",
"tasks": [
{
"label": "Update build_config",
"command": "dart lib/scripts/build.dart",
"type": "shell",
"problemMatcher": [],
"presentation": {
"reveal": "always"
},
"group": "build"
},
{
"label": "Update build_config (FVM)",
"command": "fvm dart lib/scripts/build.dart",
"type": "shell",
"problemMatcher": [],
"presentation": {
"reveal": "always"
},
"group": "build"
}
]
}