diff options
| -rw-r--r-- | .gitignore | 5 | ||||
| -rw-r--r-- | .vscode/launch.json | 16 | ||||
| -rw-r--r-- | .vscode/settings.json | 6 | 
3 files changed, 26 insertions, 1 deletions
diff --git a/.gitignore b/.gitignore index 0ccc883b2..b1f97a828 100644 --- a/.gitignore +++ b/.gitignore @@ -20,4 +20,7 @@ dist/  web/assets/swagger.yaml  # exludes docker-volume from exemple/docker-compose -example/docker-compose/docker-volume
\ No newline at end of file +example/docker-compose/docker-volume + +# excludes debug build +cmd/gotosocial/__debug_bin
\ No newline at end of file diff --git a/.vscode/launch.json b/.vscode/launch.json new file mode 100644 index 000000000..906262d2f --- /dev/null +++ b/.vscode/launch.json @@ -0,0 +1,16 @@ +{ +	"version": "0.2.0", +	"configurations": [ +		{ +			"name": "Launch Package", +			"type": "go", +			"request": "launch", +			"mode": "auto", +			"program": "${workspaceFolder}/cmd/gotosocial", +			"args": [ +				"testrig", "start" +			], +			"cwd": "${workspaceFolder}" +		} +	] +}
\ No newline at end of file diff --git a/.vscode/settings.json b/.vscode/settings.json new file mode 100644 index 000000000..a0304179d --- /dev/null +++ b/.vscode/settings.json @@ -0,0 +1,6 @@ +{ +	"go.lintTool":"golangci-lint", +	"go.lintFlags": [ +	  "--fast" +	] +}
\ No newline at end of file  | 
