Skip to content

Commit

Permalink
fix: add missing configs and linter
Browse files Browse the repository at this point in the history
  • Loading branch information
vitalvas committed Oct 19, 2024
1 parent d318431 commit 3372075
Show file tree
Hide file tree
Showing 3 changed files with 28 additions and 22 deletions.
7 changes: 7 additions & 0 deletions .github/release-please-config.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
{
"release-type": "simple",
"prerelease": false,
"packages": {
".": {}
}
}
3 changes: 3 additions & 0 deletions .github/release-please-manifest.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
{
".": "0.8.3"
}
40 changes: 18 additions & 22 deletions .golangci.yml
Original file line number Diff line number Diff line change
@@ -1,29 +1,25 @@
linters:
enable:
- megacheck
- revive
- govet
- unconvert
- megacheck
- gas
- gocyclo
- dupl
- misspell
- typecheck
- ineffassign
- stylecheck
- exportloopref
- gocritic
- nakedret
- gosimple
- prealloc
- staticcheck
- unused
- dogsled
- dogsled
- dupl
- copyloopvar
- gocritic
- gocyclo
- gosimple
- govet
- ineffassign
- misspell
- nakedret
- prealloc
- revive
- staticcheck
- stylecheck
- typecheck
- unconvert
- unused
fast: false
disable-all: true

linters-settings:
gosec:
excludes:
- G402
- G402

0 comments on commit 3372075

Please sign in to comment.