-
Notifications
You must be signed in to change notification settings - Fork 16
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
26 changed files
with
263 additions
and
102 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,43 @@ | ||
name: golangci-lint | ||
on: | ||
push: | ||
branches: | ||
- main | ||
- dev | ||
- release-* | ||
pull_request: | ||
|
||
permissions: | ||
contents: read | ||
# Optional: allow write access to checks to allow the action to annotate code in the PR. | ||
checks: write | ||
|
||
jobs: | ||
golangci: | ||
name: lint | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v4 | ||
- uses: actions/setup-go@v5 | ||
with: | ||
go-version: stable | ||
- name: golangci-lint | ||
uses: golangci/golangci-lint-action@v6 | ||
with: | ||
version: v1.60.3 | ||
args: --timeout=10m | ||
|
||
custom-linters: | ||
name: custom-linters | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v4 | ||
- uses: actions/setup-go@v5 | ||
with: | ||
go-version: stable | ||
- name: check-defer-close | ||
run: go run ./linter/check-defer-close . | ||
timeout-minutes: 10 | ||
- name: check-fuzz-transitions | ||
run: go run ./linter/fuzz-transitions | ||
timeout-minutes: 10 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,106 @@ | ||
run: | ||
timeout: 5m | ||
|
||
linters: | ||
disable-all: true | ||
# Enable specific linter | ||
# https://golangci-lint.run/usage/linters/#enabled-by-default-linters | ||
enable: | ||
- asciicheck | ||
- bidichk | ||
- durationcheck | ||
- errcheck | ||
- errname | ||
- copyloopvar | ||
- exhaustruct | ||
- forcetypeassert | ||
- goconst | ||
- gofmt | ||
- goimports | ||
- goheader | ||
- gomodguard | ||
- goprintffuncname | ||
- gosimple | ||
- govet | ||
- importas | ||
- ineffassign | ||
- makezero | ||
- misspell | ||
- nakedret | ||
- nilnil | ||
- promlinter | ||
- staticcheck | ||
- stylecheck | ||
- tenv | ||
- thelper | ||
- tparallel | ||
- typecheck | ||
- thelper | ||
- unconvert | ||
- unused | ||
- unparam | ||
- revive | ||
- gosec | ||
- testifylint | ||
|
||
linters-settings: | ||
revive: | ||
rules: | ||
- name: var-naming | ||
severity: warning | ||
disabled: false | ||
exclude: [""] | ||
arguments: | ||
- ["ID", "RPC", "IDS", "JSON"] # AllowList | ||
- [] # DenyList | ||
- - upperCaseConst: true | ||
gosec: | ||
config: | ||
G101: | ||
pattern: "(?i)passwd|pass|password|pwd|secret|private_key|token|pw|apiKey|bearer|cred|mneumonic|seed|seedphrase|entropy" | ||
ignore_entropy: false | ||
# Maximum allowed entropy of the string. | ||
entropy_threshold: "80.0" | ||
# Maximum allowed value of entropy/string length. | ||
# Is taken into account if entropy >= entropy_threshold/2. | ||
per_char_threshold: "3.0" | ||
# Calculate entropy for first N chars of the string. | ||
truncate: "32" | ||
|
||
issues: | ||
exclude-rules: | ||
- linters: | ||
- staticcheck | ||
text: "SA1024: cutset contains duplicate characters" # proved to not provide much value, only false positives. | ||
- linters: | ||
- staticcheck | ||
text: "SA9004: only the first constant in this group has an explicit type" # explicitly recommended in go syntax | ||
- linters: | ||
- stylecheck | ||
text: "ST1003:" # requires identifiers with "id" to be "ID". | ||
- linters: | ||
- stylecheck | ||
text: "ST1005:" # punctuation in error messages | ||
- linters: | ||
- staticcheck | ||
text: "SA1019: \"github.com/cosmos/ibc-go/v8/modules/core/02-client/types\" is deprecated`" | ||
- path: _test\.go | ||
text: "var-naming: don't use underscores in Go names;" | ||
linters: | ||
- revive | ||
- path: _test\.go | ||
linters: | ||
- goconst | ||
- path: _test\.go | ||
text: "G404: Use of weak random number generator" | ||
linters: | ||
- gosec | ||
|
||
max-issues-per-linter: 10000 | ||
max-same-issues: 10000 | ||
|
||
exclude-files: | ||
- ".*\\.pb\\.go" | ||
- ".*\\.pb\\.gw\\.go" | ||
- ".*\\.pulsar\\.go" | ||
- ".*_mocks\\.go" |
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.