save preoject specific settings for vscode

e.g. allow to run tests from IDE
This commit is contained in:
6543 2024-10-16 22:38:52 +02:00
parent 603fca1e27
commit d73be9fd6f
2 changed files with 7 additions and 1 deletions

5
.gitignore vendored
View File

@ -14,7 +14,10 @@ _test
/gitea_*
# MS VSCode
.vscode
.vscode/*
!.vscode/settings.json
!.vscode/launch.json
!.vscode/extensions.json
__debug_bin*
*.cgo1.go

3
.vscode/settings.json vendored Normal file
View File

@ -0,0 +1,3 @@
{
"go.buildTags": "sqlite,sqlite_unlock_notify",
}