diff --git a/.devcontainer/devcontainer.json b/.devcontainer/devcontainer.json index d84d38c..3c5c4b1 100644 --- a/.devcontainer/devcontainer.json +++ b/.devcontainer/devcontainer.json @@ -54,7 +54,7 @@ "mounts": [ "source=${localEnv:HOME}/.claude,target=/home/vscode/.claude,type=bind,consistency=cached" ], - + // Forward the default HTTP port so `make run` is reachable from the host. "forwardPorts": [8080], diff --git a/.vscode/settings.json b/.vscode/settings.json index 3e0a7c1..db2dd0e 100644 --- a/.vscode/settings.json +++ b/.vscode/settings.json @@ -1,12 +1,10 @@ { // ── Go ───────────────────────────────────────────────────────────────────── - "go.useLanguageServer": true, "go.lintTool": "golangci-lint", "go.lintFlags": ["--fast"], "go.lintOnSave": "workspace", "go.testFlags": ["-race"], "go.coverOnSave": false, - "go.generateOnSave": false, // ── Editor ───────────────────────────────────────────────────────────────── "[go]": { @@ -16,9 +14,6 @@ "source.organizeImports": "explicit" } }, - "[yaml]": { - "editor.defaultFormatter": "redhat.vscode-yaml" - }, // ── Files ────────────────────────────────────────────────────────────────── "files.exclude": { @@ -27,13 +22,11 @@ }, "search.exclude": { "**/bin": true, - "**/mocks": true, "**/vendor": true }, // ── Test explorer ────────────────────────────────────────────────────────── "go.testExplorer.enable": true, - "makefile.configureOnOpen": false, "cSpell.words": [ "djmil", "gitea", diff --git a/.vscode/tasks.json b/.vscode/tasks.json index 9b167d5..bfa924f 100644 --- a/.vscode/tasks.json +++ b/.vscode/tasks.json @@ -41,13 +41,6 @@ "presentation": { "reveal": "always", "panel": "shared" }, "problemMatcher": "$go" }, - { - "label": "mocks", - "type": "shell", - "command": "make mocks", - "group": "none", - "presentation": { "reveal": "always", "panel": "shared" } - }, { "label": "security scan", "type": "shell",