-
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.
<!-- < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < ☺ v ✰ Thanks for creating a PR! You're awesome! ✰ v Please note that maintainers will only review those PRs with a completed PR template. ☺ > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > --> ## Purpose of Changes and their Description * Apply linter to CI/CD * Apply all suggestions, `nolint` where applicable ## Link(s) to Ticket(s) or Issue(s) resolved by this PR ## Are these changes tested and documented? - [ ] If tested, please describe how. If not, why tests are not needed. -- needs more testing - [x] If documented, please describe where. If not, describe why docs are not needed. -- no need, just linting - [x] Added to `Unreleased` section of `CHANGELOG.md`? ## Still Left Todo Further testing and remove TODO on testing global nolints
- Loading branch information
Showing
27 changed files
with
271 additions
and
126 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,29 @@ | ||
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 | ||
|
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" |
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
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
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.