Skip to content

Commit

Permalink
Merge pull request #612 from atc0005/i611-enable-additional-govet-ana…
Browse files Browse the repository at this point in the history
…lyzers

Enable all BUT fieldalignment govet analyzer
  • Loading branch information
atc0005 authored Jan 26, 2022
2 parents 024b07d + 7e5ed2e commit 2e5b8ff
Showing 1 changed file with 14 additions and 13 deletions.
27 changes: 14 additions & 13 deletions .golangci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -37,18 +37,19 @@ linters:
- stylecheck
- unconvert

#
# Disable fieldalignment settings until the Go team offers more control over
# the types of checks provided by the fieldalignment linter or golangci-lint
# does so.
#
# See https://github.com/atc0005/go-ci/issues/302 for more information.
#
# disable:
# - maligned

# disable:
# - maligned
linters-settings:
govet:
enable-all: true

# linters-settings:
# govet:
# enable:
# - fieldalignment
#
# Disable fieldalignment settings until the Go team offers more control over
# the types of checks provided by the fieldalignment linter or golangci-lint
# does so.
#
# See https://github.com/atc0005/go-ci/issues/302 for more information.
#
disable:
- fieldalignment

0 comments on commit 2e5b8ff

Please sign in to comment.