Skip to content

Commit

Permalink
add .vscode/cspell.json and .vscode/extensions.json
Browse files Browse the repository at this point in the history
  • Loading branch information
moukoublen committed Feb 10, 2024
1 parent f8dde32 commit 4313225
Show file tree
Hide file tree
Showing 3 changed files with 53 additions and 0 deletions.
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,8 @@ go.work
!/.vscode/settings.json
!/.vscode/launch.json
!/.vscode/tasks.json
!/.vscode/cspell.json
!/.vscode/extensions.json

# Executables
/output/
Expand Down
43 changes: 43 additions & 0 deletions .vscode/cspell.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,43 @@
{
"version": "0.2",
"language": "en",
// words - list of words to be always considered correct
"words": [
"CMDNAME",
"cosmtrek",
"covermode",
"coverprofile",
"CURDIR",
"endef",
"extldflags",
"GOBIN",
"goboilerplate",
"GOFLAGS",
"gofmt",
"gofumpt",
"goimports",
"gojq",
"golangci",
"GOPATH",
"GOVERSION",
"honnef",
"httpcompress",
"itchyny",
"ldflags",
"mvdan",
"NOTINTERMEDIATE",
"NOTPARALLEL",
"proto",
"protobuf",
"PROTOBUFGO",
"PROTOC",
"SECONDEXPANSION",
"staticcheck",
"trimpath"
],
"ignorePaths": [
"vendor",
".git",
"/go.mod"
]
}
8 changes: 8 additions & 0 deletions .vscode/extensions.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
{
// https://go.microsoft.com/fwlink/?LinkId=827846
"recommendations": [
"golang.go",
"ms-azuretools.vscode-docker",
"streetsidesoftware.code-spell-checker",
]
}

0 comments on commit 4313225

Please sign in to comment.