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

Bump golangci/golangci-lint-action from 6 to 7 #141

Merged
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
4 changes: 2 additions & 2 deletions .github/workflows/golangci-lint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,9 +24,9 @@ jobs:
go-version: "${{ steps.goversion.outputs.version }}"

- name: golangci-lint
uses: golangci/golangci-lint-action@v6
uses: golangci/golangci-lint-action@v7
with:
version: v1.61
version: latest
args: --timeout=5m

# Ignore pre-existing issues.
Expand Down
156 changes: 80 additions & 76 deletions .golangci.yml
Original file line number Diff line number Diff line change
@@ -1,87 +1,91 @@
---

version: "2"
run:
issues-exit-code: 1
modules-download-mode: readonly

issues-exit-code: 1
linters:
disable-all: true
default: none
enable:
- errcheck
- gosimple
- govet
- ineffassign
- staticcheck
- stylecheck
- typecheck
- unused
- errorlint
- gofumpt
- goimports
- godox
- goheader
- govet
- ineffassign
- misspell
- prealloc
- unconvert
- revive
fast: false

linters-settings:
goimports:
local-prefixes: github.com/elastic/stream
gofumpt:
extra-rules: true
goheader:
# Use https://github.com/elastic/go-licenser to automatically add headers.
template: |-
Licensed to Elasticsearch B.V. under one or more agreements.
Elasticsearch B.V. licenses this file to you under the Apache 2.0 License.
See the LICENSE file in the project root for more information.
revive:
enable-all-rules: false
# https://github.com/mgechev/revive/blob/master/RULES_DESCRIPTIONS.md
rules:
- name: bare-return
- name: call-to-gc
- name: confusing-results
- name: constant-logical-expr
- name: context-as-argument
- name: deep-exit
- name: defer
- name: duplicated-imports
- name: early-return
- name: empty-block
- name: error-strings
- name: errorf
- name: exported
arguments:
- checkPrivateReceivers
- name: imports-blacklist
arguments:
- github.com/pkg/errors
- name: increment-decrement
- name: range
- name: range-val-address
- name: range-val-in-closure
- name: receiver-naming
- name: struct-tag
- name: time-naming
- name: unconditional-recursion
- name: unexported-naming
- name: unexported-return
- name: unnecessary-stmt
- name: unreachable-code
- name: unused-parameter
- name: unused-receiver
- name: var-declaration
- name: waitgroup-by-value
stylecheck:
checks:
- all

issues:
include:
# If you're going to write a comment follow the conventions.
# https://go.dev/doc/effective_go#commentary.
# comment on exported (.+) should be of the form "(.+)..."
- EXC0014
- staticcheck
- unconvert
- unused
settings:
goheader:
template: |-
Licensed to Elasticsearch B.V. under one or more agreements.
Elasticsearch B.V. licenses this file to you under the Apache 2.0 License.
See the LICENSE file in the project root for more information.
revive:
enable-all-rules: false
rules:
- name: bare-return
- name: call-to-gc
- name: confusing-results
- name: constant-logical-expr
- name: context-as-argument
- name: deep-exit
- name: defer
- name: duplicated-imports
- name: early-return
- name: empty-block
- name: error-strings
- name: errorf
- name: exported
arguments:
- checkPrivateReceivers
- name: imports-blocklist
arguments:
- github.com/pkg/errors
- name: increment-decrement
- name: range
- name: range-val-address
- name: range-val-in-closure
- name: receiver-naming
- name: struct-tag
- name: time-naming
- name: unconditional-recursion
- name: unexported-naming
- name: unexported-return
- name: unnecessary-stmt
- name: unreachable-code
- name: unused-parameter
- name: unused-receiver
- name: var-declaration
- name: waitgroup-by-value
staticcheck:
checks:
- all
exclusions:
generated: lax
presets:
- common-false-positives
- legacy
- std-error-handling
paths:
- third_party$
- builtin$
- examples$
formatters:
enable:
- gofumpt
- goimports
settings:
gofumpt:
extra-rules: true
goimports:
local-prefixes:
- github.com/elastic/stream
exclusions:
generated: lax
paths:
- third_party$
- builtin$
- examples$
Loading