From 44a4ec7bcddef997f2348428256cb0ef12097e7d Mon Sep 17 00:00:00 2001 From: nhyatt Date: Tue, 24 Oct 2023 12:35:42 -0500 Subject: [PATCH] initial commit --- .gitignore | 67 +++++++++++++++++++++++++++++++++++++++++ .golangci.yaml | 58 +++++++++++++++++++++++++++++++++++ .vscode/extensions.json | 5 +++ .vscode/settings.json | 28 +++++++++++++++++ 4 files changed, 158 insertions(+) create mode 100644 .gitignore create mode 100644 .golangci.yaml create mode 100644 .vscode/extensions.json create mode 100644 .vscode/settings.json diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..e689df1 --- /dev/null +++ b/.gitignore @@ -0,0 +1,67 @@ +# Application created directories +output/ + +# Visual Studio Code +.vscode/* +!.vscode/settings.json +!.vscode/tasks.json +!.vscode/launce.json +!.vscode/extensions.json +!.vscode/*.code-snippets +.history/ +*.vsix + +# GoLang +*.exe +*.exe~ +*.dll +*.so +*.dylib +*.test +*.out +go.work + +# General +.DS_Store +.AppleDouble +.LSOverride +# Icon must end with two \r +Icon + + +# Thumbnails +._* +# Files that might appear in the root of a volume +.DocumentRevisions-V100 +.fseventsd +.Spotlight-V100 +.TemporaryItems +.Trashes +.VolumeIcon.icns +.com.apple.timemachine.donotpresent +# Directories potentially created on remote AFP share +.AppleDB +.AppleDesktop +Network Trash Folder +Temporary Items +.apdisk + +# Windows thumbnail cache files +Thumbs.db +Thumbs.db:encryptable +ehthumbs.db +ehthumbs_vista.db +# Dump file +*.stackdump +# Folder config file +[Dd]esktop.ini +# Recycle Bin used on file shares +$RECYCLE.BIN/ +# Windows Installer files +*.cab +*.msi +*.msix +*.msm +*.msp +# Windows shortcuts +*.lnk diff --git a/.golangci.yaml b/.golangci.yaml new file mode 100644 index 0000000..7a02377 --- /dev/null +++ b/.golangci.yaml @@ -0,0 +1,58 @@ +linters: + disable-all: true + enable: + # default linters + - errcheck + - gosimple + - govet + - ineffassign + - staticcheck + - unused + # project linters + - asasalint + - asciicheck + - bodyclose + - contextcheck + - dupl + - durationcheck + - errchkjson + - gocheckcompilerdirectives + - gocognit + - goconst + - gocritic + - godox + - goimports + - gosec + - grouper + - importas + - misspell + - musttag + - nestif + - nilerr + - nilnil + - prealloc + - reassign + - tagalign + - tenv + - unconvert + - unparam + - usestdlibvars + - wastedassign + - whitespace + fast: true +linter-settings: + tagalign: + order: + - json + - yaml + - yml + - toml + - mapstructure + - binding + - validate + - env + - default + - ignored + - required + - secret + - info diff --git a/.vscode/extensions.json b/.vscode/extensions.json new file mode 100644 index 0000000..b32e3d1 --- /dev/null +++ b/.vscode/extensions.json @@ -0,0 +1,5 @@ +{ + "recommendations": [ + "golang.go" + ] +} \ No newline at end of file diff --git a/.vscode/settings.json b/.vscode/settings.json new file mode 100644 index 0000000..7e2d3bd --- /dev/null +++ b/.vscode/settings.json @@ -0,0 +1,28 @@ +{ + "go.useLanguageServer": true, + "go.vetOnSave": "package", + "go.lintOnSave": "package", + "go.formatTool": "goimports", + "go.lintTool": "golangci-lint", + "go.lintFlags": [ + "--fast" + ], + + "[go]": { + "editor.detectIndentation": false, + "editor.tabSize": 2, + "editor.insertSpaces": false, + "editor.formatOnSave": true, + "editor.codeActionsOnSave": { + "source.organizeImports": true + } + }, + + "comment": { + "description": "Uncomment to enable goproxy and gosumdb." + "go.toolsEnvVars": { + "GOPROXY": "https://example.com/goproxy/", + "GOSUMDB": "sum.golang.org https://example.com/gosum/" + } + } +} \ No newline at end of file