Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore(devcontainer): fix config files #378

Merged
merged 1 commit into from
Jun 15, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion .devcontainer/devcontainer.json
Original file line number Diff line number Diff line change
Expand Up @@ -124,7 +124,8 @@
"install-zsh-plugins": "git clone https://github.com/zsh-users/zsh-syntax-highlighting.git ${ZSH_CUSTOM:-~/.oh-my-zsh/custom}/plugins/zsh-syntax-highlighting && git clone https://github.com/zsh-users/zsh-autosuggestions ${ZSH_CUSTOM:-~/.oh-my-zsh/custom}/plugins/zsh-autosuggestions",
"modules": "go mod download",
"taskfile": "go install github.com/go-task/task/v3/cmd/task@latest",
"gomarkdoc": "go install github.com/princjef/gomarkdoc/cmd/gomarkdoc@latest"
"gomarkdoc": "go install github.com/princjef/gomarkdoc/cmd/gomarkdoc@latest",
"goreleaser": "go install github.com/goreleaser/goreleaser/v2@latest"
},
"remoteUser": "root",
"containerUser": "root",
Expand Down
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -16,3 +16,5 @@

# Wiki pages
wiki

dist/
8 changes: 5 additions & 3 deletions .golangci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -5,12 +5,14 @@ run:
timeout: 20s
issues-exit-code: 2
tests: false
skip-dirs-use-default: true
modules-download-mode: readonly
go: "1.17"
go: "1.22"

output:
format: tab
formats:
- path: stdout
format: tab
- format: colored-line-number
sort-results: true

linters:
Expand Down
9 changes: 5 additions & 4 deletions .goreleaser.yml → .goreleaser.yaml
Original file line number Diff line number Diff line change
@@ -1,7 +1,8 @@
# This is an example goreleaser.yaml file with some sane defaults.
project_name: mollie-api-golang
build:
skip: true
version: 2

builds:
- skip: true

changelog:
use: github
sort: asc
Expand Down
Loading