Skip to content

Commit

Permalink
Merge pull request #283 from vgarvardt/chore/linter-issues
Browse files Browse the repository at this point in the history
fix: fixed reported lining issues
  • Loading branch information
vgarvardt committed May 13, 2024
2 parents d7ab622 + fe17b7d commit dcfab08
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 2 deletions.
5 changes: 5 additions & 0 deletions Taskfile.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -44,3 +44,8 @@ tasks:
--volume "{{.CURDIR}}:/workdir" \
--workdir "/workdir" \
python:3.12-slim bash -c "python -m pip install --upgrade pip && pip install 'codespell>=2.2.4' && codespell"
lint:
summary: Lint the code (expects golangci-lint to be installed)
cmds:
- cmd: golangci-lint run --config=./.github/linters/.golangci.yml --fix
4 changes: 2 additions & 2 deletions _example/outbox-worker-kafka/common.go
Original file line number Diff line number Diff line change
Expand Up @@ -18,9 +18,9 @@ import (
"github.com/vgarvardt/gue/v5/adapter/pgxv5"
)

//func init() {
// func init() {
// sarama.Logger = log.New(os.Stdout, "[Sarama] ", log.LstdFlags)
//}
// }

const (
kafkaTopic = "test-topic"
Expand Down

0 comments on commit dcfab08

Please sign in to comment.