style: update gitignore and add editor/editorconfig settings

This commit is contained in:
Genqila
2025-12-28 02:03:22 +07:00
committed by guiyomu-dev
parent 762e8f1794
commit 44855a6340
4 changed files with 210 additions and 1 deletions

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

@@ -0,0 +1,15 @@
{
"go.formatTool": "default",
"[json]": {
"editor.formatOnSave": true,
},
"[jsonc]": {
"editor.formatOnSave": true,
},
"[go]": {
"editor.formatOnSave": true,
"editor.codeActionsOnSave": {
"source.organizeImports": "always"
}
}
}