1
1
mirror of https://github.com/OpenDiablo2/OpenDiablo2 synced 2024-06-09 17:30:43 +00:00

Moved code to source subfolder

This commit is contained in:
Tim Sarbin 2019-10-24 09:33:18 -04:00
parent 361b60febf
commit 08c8e10502
17 changed files with 23 additions and 0 deletions

18
src/.vscode/launch.json vendored Normal file
View File

@ -0,0 +1,18 @@
{
// Use IntelliSense to learn about possible attributes.
// Hover to view descriptions of existing attributes.
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
"version": "0.2.0",
"configurations": [
{
"name": "Launch",
"type": "go",
"request": "launch",
"mode": "auto",
"program": "${workspaceFolder}/App",
"env": {},
"args": [],
"cwd": "${workspaceFolder}"
}
]
}

5
src/.vscode/settings.json vendored Normal file
View File

@ -0,0 +1,5 @@
{
"go.lintFlags": [
"--exclude=\"\bexported \\w+ (\\S*['.]*)([a-zA-Z'.*]*) should have comment or be unexported\b\""
]
}