mirror of
https://github.com/nspcc-dev/neo-go.git
synced 2024-11-21 11:51:03 +00:00
d03fd02f79
According to https://golangci-lint.run/usage/linters/#govet, `check-shadowing` no longer exists. Now it should be ```yaml govet: disable: [shadow] ``` but `shadow` is disabled by default. Thus, whole `govet` section is not needed anymore. ``` $ golangci-lint --version golangci-lint has version 1.59.1 built with go1.22.3 from 1a55854a on 2024-06-09T18:08:33Z ``` Signed-off-by: Leonard Lyubich <leonard@morphbits.io>
73 lines
1.5 KiB
YAML
73 lines
1.5 KiB
YAML
# This file contains all available configuration options
|
|
# with their default values.
|
|
|
|
# options for analysis running
|
|
run:
|
|
# timeout for analysis, e.g. 30s, 5m, default is 1m
|
|
timeout: 5m
|
|
|
|
# include test files or not, default is true
|
|
tests: true
|
|
|
|
# output configuration options
|
|
output:
|
|
# colored-line-number|line-number|json|tab|checkstyle|code-climate, default is "colored-line-number"
|
|
formats:
|
|
- format: tab
|
|
|
|
# all available settings of specific linters
|
|
linters-settings:
|
|
exhaustive:
|
|
# indicates that switch statements are to be considered exhaustive if a
|
|
# 'default' case is present, even if all enum members aren't listed in the
|
|
# switch
|
|
default-signifies-exhaustive: true
|
|
|
|
linters:
|
|
enable:
|
|
# mandatory linters
|
|
- govet
|
|
- revive
|
|
|
|
# some default golangci-lint linters
|
|
- errcheck
|
|
- gosimple
|
|
- godot
|
|
- ineffassign
|
|
- staticcheck
|
|
- typecheck
|
|
- unused
|
|
|
|
# extra linters
|
|
# - exhaustive
|
|
# - goconst
|
|
# - goerr113
|
|
# - gomnd
|
|
# - nonamedreturns
|
|
# - unparam
|
|
- bidichk
|
|
- bodyclose
|
|
- contextcheck
|
|
- decorder
|
|
- durationcheck
|
|
- errorlint
|
|
- exportloopref
|
|
- gofmt
|
|
- misspell
|
|
- predeclared
|
|
- reassign
|
|
- whitespace
|
|
- goimports
|
|
disable-all: true
|
|
fast: false
|
|
|
|
issues:
|
|
include:
|
|
- EXC0002 # should have a comment
|
|
- EXC0003 # test/Test ... consider calling this
|
|
- EXC0004 # govet
|
|
- EXC0005 # C-style breaks
|
|
exclude-rules:
|
|
- linters:
|
|
- revive
|
|
text: "unused-parameter"
|