Table of Contents
To see a list of supported linters and which linters are enabled/disabled:
golangci-lint help linters
Enabled By Default Linters
Name | Description | Presets | AutoFix | Since | |
---|---|---|---|---|---|
deadcode | Finds unused code | unused | v1.0.0 | ||
errcheck ⚙️ | Errcheck is a program for checking for unchecked errors in go programs. These unchecked errors can be critical bugs in some cases | bugs, error | v1.0.0 | ||
gosimple ⚙️ | Linter for Go source code that specializes in simplifying a code | style | v1.20.0 | ||
govet ⚙️ | Vet examines Go source code and reports suspicious constructs, such as Printf calls whose arguments do not align with the format string | bugs, metalinter | v1.0.0 | ||
ineffassign | Detects when assignments to existing variables are not used | unused | v1.0.0 | ||
staticcheck ⚙️ | Staticcheck is a go vet on steroids, applying a ton of static analysis checks | bugs, metalinter | v1.0.0 | ||
structcheck ⚙️ | Finds unused struct fields | unused | v1.0.0 | ||
typecheck | Like the front-end of a Go compiler, parses and type-checks Go code | bugs | v1.3.0 | ||
unused ⚙️ | Checks Go code for unused constants, variables, functions and types | unused | v1.20.0 | ||
varcheck ⚙️ | Finds unused global variables and constants | unused | v1.0.0 |
Disabled By Default Linters (-E/--enable
)
Name | Description | Presets | AutoFix | Since | |
---|---|---|---|---|---|
asciicheck | Simple linter to check that your code does not contain non-ASCII identifiers | bugs, style | v1.26.0 | ||
bidichk ⚙️ | Checks for dangerous unicode character sequences | bugs | 1.43.0 | ||
bodyclose | checks whether HTTP response body is closed successfully | performance, bugs | v1.18.0 | ||
containedctx | containedctx is a linter that detects struct contained context.Context field | style | 1.44.0 | ||
contextcheck | check the function whether use a non-inherited context | bugs | v1.43.0 | ||
cyclop ⚙️ | checks function and package cyclomatic complexity | complexity | v1.37.0 | ||
decorder ⚙️ | check declaration order and count of types, constants, variables and functions | format, style | v1.44.0 | ||
depguard ⚙️ | Go linter that checks if package imports are in a list of acceptable packages | style, import, module | v1.4.0 | ||
dogsled ⚙️ | Checks assignments with too many blank identifiers (e.g. x, , , _, := f()) | style | v1.19.0 | ||
dupl ⚙️ | Tool for code clone detection | style | v1.0.0 | ||
durationcheck | check for two durations multiplied together | bugs | v1.37.0 | ||
errchkjson ⚙️ | Checks types passed to the json encoding functions. Reports unsupported types and optionally reports occations, where the check for the returned error can be omitted. | bugs | 1.44.0 | ||
errname | Checks that sentinel errors are prefixed with the Err and error types are suffixed with the Error . | style | v1.42.0 | ||
errorlint ⚙️ | errorlint is a linter for that can be used to find code that will cause problems with the error wrapping scheme introduced in Go 1.13. | bugs, error | v1.32.0 | ||
exhaustive ⚙️ | check exhaustiveness of enum switch statements | bugs | v1.28.0 | ||
exhaustivestruct ⚙️ | Checks if all struct's fields are initialized | style, test | v1.32.0 | ||
exportloopref | checks for pointers to enclosing loop variables | bugs | v1.28.0 | ||
forbidigo ⚙️ | Forbids identifiers | style | v1.34.0 | ||
forcetypeassert | finds forced type assertions | style | v1.38.0 | ||
funlen ⚙️ | Tool for detection of long functions | complexity | v1.18.0 | ||
gci ⚙️ | Gci controls golang package import order and makes it always deterministic. | format, import | ✔ | v1.30.0 | |
gochecknoglobals | check that no global variables exist This analyzer checks for global variables and errors on any found. A global variable is a variable declared in package scope and that can be read and written to by any function within the package. Global variables can cause side effects which are difficult to keep track of. A code in one function may change the variables state while another unrelated chunk of code may be effected by it. | style | v1.12.0 | ||
gochecknoinits | Checks that no init functions are present in Go code | style | v1.12.0 | ||
gocognit ⚙️ | Computes and checks the cognitive complexity of functions | complexity | v1.20.0 | ||
goconst ⚙️ | Finds repeated strings that could be replaced by a constant | style | v1.0.0 | ||
gocritic ⚙️ | Provides diagnostics that check for bugs, performance and style issues. Extensible without recompilation through dynamic rules. Dynamic rules are written declaratively with AST patterns, filters, report message and optional suggestion. | style, metalinter | v1.12.0 | ||
gocyclo ⚙️ | Computes and checks the cyclomatic complexity of functions | complexity | v1.0.0 | ||
godot ⚙️ | Check if comments end in a period | style, comment | ✔ | v1.25.0 | |
godox ⚙️ | Tool for detection of FIXME, TODO and other comment keywords | style, comment | v1.19.0 | ||
goerr113 | Golang linter to check the errors handling expressions | style, error | v1.26.0 | ||
gofmt ⚙️ | Gofmt checks whether code was gofmt-ed. By default this tool runs with -s option to check for code simplification | format | ✔ | v1.0.0 | |
gofumpt ⚙️ | Gofumpt checks whether code was gofumpt-ed. | format | ✔ | v1.28.0 | |
goheader ⚙️ | Checks is file header matches to pattern | style | v1.28.0 | ||
goimports ⚙️ | In addition to fixing imports, goimports also formats your code in the same style as gofmt. | format, import | ✔ | v1.20.0 | |
golint ⚙️ ⚠ | The repository of the linter has been archived by the owner. Replaced by revive. | style | v1.0.0 | ||
gomnd ⚙️ | An analyzer to detect magic numbers. | style | v1.22.0 | ||
gomoddirectives ⚙️ | Manage the use of 'replace', 'retract', and 'excludes' directives in go.mod. | style, module | v1.39.0 | ||
gomodguard ⚙️ | Allow and block list linter for direct Go module dependencies. This is different from depguard where there are different block types for example version constraints and module recommendations. | style, import, module | v1.25.0 | ||
goprintffuncname | Checks that printf-like functions are named with f at the end | style | v1.23.0 | ||
gosec ⚙️ | Inspects source code for security problems | bugs | v1.0.0 | ||
grouper ⚙️ | An analyzer to analyze expression groups. | style | v1.44.0 | ||
ifshort ⚙️ | Checks that your code uses short syntax for if-statements whenever possible | style | v1.36.0 | ||
importas ⚙️ | Enforces consistent import aliases | style | v1.38.0 | ||
interfacer ⚠ | The repository of the linter has been archived by the owner. | style | v1.0.0 | ||
ireturn ⚙️ | Accept Interfaces, Return Concrete Types | style | v1.43.0 | ||
lll ⚙️ | Reports long lines | style | v1.8.0 | ||
maintidx ⚙️ | maintidx measures the maintainability index of each function. | complexity | v1.44.0 | ||
makezero ⚙️ | Finds slice declarations with non-zero initial length | style, bugs | v1.34.0 | ||
maligned ⚙️ ⚠ | The repository of the linter has been archived by the owner. Replaced by govet 'fieldalignment'. | performance | v1.0.0 | ||
misspell ⚙️ | Finds commonly misspelled English words in comments | style, comment | ✔ | v1.8.0 | |
nakedret ⚙️ | Finds naked returns in functions greater than a specified function length | style | v1.19.0 | ||
nestif ⚙️ | Reports deeply nested if statements | complexity | v1.25.0 | ||
nilerr | Finds the code that returns nil even if it checks that the error is not nil. | bugs | v1.38.0 | ||
nilnil ⚙️ | Checks that there is no simultaneous return of nil error and an invalid value. | style | v1.43.0 | ||
nlreturn ⚙️ | nlreturn checks for a new line before return and branch statements to increase code clarity | style | v1.30.0 | ||
noctx | noctx finds sending http request without context.Context | performance, bugs | v1.28.0 | ||
nolintlint ⚙️ | Reports ill-formed or insufficient nolint directives | style | v1.26.0 | ||
paralleltest | paralleltest detects missing usage of t.Parallel() method in your Go test | style, test | v1.33.0 | ||
prealloc ⚙️ | Finds slice declarations that could potentially be preallocated | performance | v1.19.0 | ||
predeclared ⚙️ | find code that shadows one of Go's predeclared identifiers | style | v1.35.0 | ||
promlinter ⚙️ | Check Prometheus metrics naming via promlint | style | v1.40.0 | ||
revive ⚙️ | Fast, configurable, extensible, flexible, and beautiful linter for Go. Drop-in replacement of golint. | style, metalinter | v1.37.0 | ||
rowserrcheck ⚙️ | checks whether Err of rows is checked successfully | bugs, sql | v1.23.0 | ||
scopelint ⚠ | The repository of the linter has been deprecated by the owner. Replaced by exportloopref. | bugs | v1.12.0 | ||
sqlclosecheck | Checks that sql.Rows and sql.Stmt are closed. | bugs, sql | v1.28.0 | ||
stylecheck ⚙️ | Stylecheck is a replacement for golint | style | v1.20.0 | ||
tagliatelle ⚙️ | Checks the struct tags. | style | v1.40.0 | ||
tenv ⚙️ | tenv is analyzer that detects using os.Setenv instead of t.Setenv since Go1.17 | style | v1.43.0 | ||
testpackage ⚙️ | linter that makes you use a separate _test package | style, test | v1.25.0 | ||
thelper ⚙️ | thelper detects golang test helpers without t.Helper() call and checks the consistency of test helpers | style | v1.34.0 | ||
tparallel | tparallel detects inappropriate usage of t.Parallel() method in your Go test codes | style, test | v1.32.0 | ||
unconvert | Remove unnecessary type conversions | style | v1.0.0 | ||
unparam ⚙️ | Reports unused function parameters | unused | v1.9.0 | ||
varnamelen ⚙️ | checks that the length of a variable's name matches its scope | style | v1.43.0 | ||
wastedassign | wastedassign finds wasted assignment statements. | style | v1.38.0 | ||
whitespace ⚙️ | Tool for detection of leading and trailing whitespace | style | ✔ | v1.19.0 | |
wrapcheck ⚙️ | Checks that errors returned from external packages are wrapped | style, error | v1.32.0 | ||
wsl ⚙️ | Whitespace Linter - Forces you to use empty lines! | style | v1.20.0 |
Linters Configuration
bidichk
linters-settings:bidichk:# The following configurations check for all mentioned invisible unicode runes.# All runes are enabled by default.left-to-right-embedding: falseright-to-left-embedding: falsepop-directional-formatting: falseleft-to-right-override: falseright-to-left-override: falseleft-to-right-isolate: falseright-to-left-isolate: falsefirst-strong-isolate: falsepop-directional-isolate: false
cyclop
linters-settings:cyclop:# The maximal code complexity to report.max-complexity: 10# The maximal average package complexity.# If it's higher than 0.0 (float) the check is enabled# Default: 0.0package-average: 0.5# Should ignore tests.# Default: falseskip-tests: true
decorder
linters-settings:decorder:# Required order of `type`, `const`, `var` and `func` declarations inside a file.# Default: types before constants before variables before functions.dec-order:- type- const- var- func# If true, order of declarations is not checked at all.# Default: true (disabled)disable-dec-order-check: false# If true, `init` func can be anywhere in file (does not have to be declared before all other functions).# Default: true (disabled)disable-init-func-first-check: false# If true, multiple global `type`, `const` and `var` declarations are allowed.# Default: true (disabled)disable-dec-num-check: false
depguard
linters-settings:depguard:# Kind of list is passed in.# Allowed values: allowlist|denylist# Default: denylistlist-type: allowlist# Check the list against standard lib.# Default: falseinclude-go-root: true# A list of packages for the list type specified.# Default: []packages:- github.com/sirupsen/logrus# A list of packages for the list type specified.# Specify an error message to output when a denied package is used.# Default: []packages-with-error-message:- github.com/sirupsen/logrus: 'logging is allowed only by logutils.Log'# Create additional guards that follow the same configuration pattern.# Results from all guards are aggregated together.additional-guards:- list-type: denylistinclude-go-root: falsepackages:- github.com/stretchr/testify# Specify rules by which the linter ignores certain files for consideration.ignore-file-rules:- "**/*_test.go"- "**/mock/**/*.go"
dogsled
linters-settings:dogsled:# Checks assignments with too many blank identifiers.# Default: 2max-blank-identifiers: 3
dupl
linters-settings:dupl:# Tokens count to trigger issue.# Default: 150threshold: 100
errcheck
linters-settings:errcheck:# Report about not checking of errors in type assertions: `a := b.(MyStruct)`.# Such cases aren't reported by default.# Default: falsecheck-type-assertions: true# report about assignment of errors to blank identifier: `num, _ := strconv.Atoi(numStr)`.# Such cases aren't reported by default.# Default: falsecheck-blank: true# DEPRECATED comma-separated list of pairs of the form pkg:regex## the regex is used to ignore names within pkg. (default "fmt:.*").# see https://github.com/kisielk/errcheck#the-deprecated-method for detailsignore: fmt:.*,io/ioutil:^Read.*# DEPRECATED use exclude-functions instead.## Path to a file containing a list of functions to exclude from checking.# See https://github.com/kisielk/errcheck#excluding-functions for details.exclude: /path/to/file.txt# List of functions to exclude from checking, where each entry is a single function to exclude.# See https://github.com/kisielk/errcheck#excluding-functions for details.exclude-functions:- io/ioutil.ReadFile- io.Copy(*bytes.Buffer)- io.Copy(os.Stdout)
errchkjson
linters-settings:errchkjson:# With check-error-free-encoding set to true, errchkjson does warn about errors# from json encoding functions that are safe to be ignored,# because they are not possible to happen.## if check-error-free-encoding is set to true and errcheck linter is enabled,# it is recommended to add the following exceptions to prevent from false positives:## linters-settings:# errcheck:# exclude-functions:# - encoding/json.Marshal# - encoding/json.MarshalIndent## Default: falsecheck-error-free-encoding: true# Issue on struct encoding that doesn't have exported fields.# Default: falsereport-no-exported: false
errorlint
linters-settings:errorlint:# Check whether fmt.Errorf uses the %w verb for formatting errors.# See the https://github.com/polyfloyd/go-errorlint for caveats.# Default: trueerrorf: false# Check for plain type assertions and type switches.# Default: trueasserts: false# Check for plain error comparisons.# Default: truecomparison: false
exhaustive
linters-settings:exhaustive:# Check switch statements in generated files also.# Default: falsecheck-generated: true# Presence of "default" case in switch statements satisfies exhaustiveness,# even if all enum members are not listed.# Default: falsedefault-signifies-exhaustive: true# Enum members matching the supplied regex do not have to be listed in# switch statements to satisfy exhaustiveness.# Default: ""ignore-enum-members: "Example.+"# Consider enums only in package scopes, not in inner scopes.# Default: falsepackage-scope-only: true
exhaustivestruct
linters-settings:exhaustivestruct:# Struct Patterns is list of expressions to match struct packages and names.# The struct packages have the form `example.com/package.ExampleStruct`.# The matching patterns can use matching syntax from https://pkg.go.dev/path#Match.# If this list is empty, all structs are tested.struct-patterns:- '*.Test'- 'example.com/package.ExampleStruct'
forbidigo
linters-settings:forbidigo:# Forbid the following identifiers (list of regexp).forbid:- ^print.*$- 'fmt\.Print.*'# Exclude godoc examples from forbidigo checks.# Default: trueexclude_godoc_examples: false
funlen
linters-settings:funlen:# Checks the number of lines in a function.# If lower than 0, disable the check.# Default: 60lines: -1# Checks the number of statements in a function.# If lower than 0, disable the check.# Default: 40statements: -1
gci
linters-settings:gci:# DEPRECATED: use `sections` and `prefix(github.com/org/project)` instead.local-prefixes: github.com/org/project# Checks that no inline Comments are present.# Default: falseno-inline-comments: true# Checks that no prefix Comments(comment lines above an import) are present.# Default: falseno-prefix-comments: true# Section configuration to compare against.# Section names are case-insensitive and may contain parameters in ().# Default: ["standard", "default"]sections:- standard # Captures all standard packages if they do not match another section.- default # Contains all imports that could not be matched to another section type.- comment(your text here) # Prints the specified indented comment.- newLine # Prints an empty line- prefix(github.com/org/project) # Groups all imports with the specified Prefix.# Separators that should be present between sections.# Default: ["newLine"]section-separators:- newLine
gocognit
linters-settings:gocognit:# Minimal code complexity to report# Default: 30 (but we recommend 10-20)min-complexity: 10
goconst
linters-settings:goconst:# Minimal length of string constant.# Default: 3min-len: 2# Minimum occurrences of constant string count to trigger issue.# Default: 3min-occurrences: 2# Ignore test files.# Default: falseignore-tests: true# Look for existing constants matching the values.# Default: truematch-constant: false# Search also for duplicated numbers.# Default: falsenumbers: true# Minimum value, only works with goconst.numbers# Default: 3min: 2# Maximum value, only works with goconst.numbers# Default: 3max: 2# Ignore when constant is not used as function argument.# Default: trueignore-calls: false
gocritic
linters-settings:gocritic:# Which checks should be enabled; can't be combined with 'disabled-checks'.# See https://go-critic.github.io/overview#checks-overview.# To check which checks are enabled run `GL_DEBUG=gocritic golangci-lint run`.# By default, list of stable checks is used.enabled-checks:- nestingReduce- unnamedResult- ruleguard- truncateCmp# Which checks should be disabled; can't be combined with 'enabled-checks'.# Default: []disabled-checks:- regexpMust# Enable multiple checks by tags, run `GL_DEBUG=gocritic golangci-lint run` to see all tags and checks.# See https://github.com/go-critic/go-critic#usage -> section "Tags".# Default: []enabled-tags:- diagnostic- style- performance- experimental- opinionateddisabled-tags:- diagnostic- style- performance- experimental- opinionated# Settings passed to gocritic.# The settings key is the name of a supported gocritic checker.# The list of supported checkers can be find in https://go-critic.github.io/overview.settings:# Must be valid enabled check name.captLocal:# Whether to restrict checker to params only.# Default: trueparamsOnly: falseelseif:# Whether to skip balanced if-else pairs.# Default: trueskipBalanced: falsehugeParam:# Size in bytes that makes the warning trigger.# Default: 80sizeThreshold: 70nestingReduce:# Min number of statements inside a branch to trigger a warning.# Default: 5bodyWidth: 4rangeExprCopy:# Size in bytes that makes the warning trigger.# Default: 512sizeThreshold: 516# Whether to check test functions# Default: trueskipTestFuncs: falserangeValCopy:# Size in bytes that makes the warning trigger.# Default: 128sizeThreshold: 32# Whether to check test functions.# Default: trueskipTestFuncs: falseruleguard:# Enable debug to identify which 'Where' condition was rejected.# The value of the parameter is the name of a function in a ruleguard file.## When a rule is evaluated:# If:# The Match() clause is accepted; and# One of the conditions in the Where() clause is rejected,# Then:# ruleguard prints the specific Where() condition that was rejected.## The flag is passed to the ruleguard 'debug-group' argument.debug: 'emptyDecl'# Deprecated, use 'failOn' param.# If set to true, identical to failOn='all', otherwise failOn=''failOnError: false# Determines the behavior when an error occurs while parsing ruleguard files.# If flag is not set, log error and skip rule files that contain an error.# If flag is set, the value must be a comma-separated list of error conditions.# - 'all': fail on all errors.# - 'import': ruleguard rule imports a package that cannot be found.# - 'dsl': gorule file does not comply with the ruleguard DSL.failOn: dsl# Comma-separated list of file paths containing ruleguard rules.# If a path is relative, it is relative to the directory where the golangci-lint command is executed.# The special '${configDir}' variable is substituted with the absolute directory containing the golangci config file.# Glob patterns such as 'rules-*.go' may be specified.rules: '${configDir}/ruleguard/rules-*.go,${configDir}/myrule1.go'tooManyResultsChecker:# Maximum number of results.# Default: 5maxResults: 10truncateCmp:# Whether to skip int/uint/uintptr types.# Default: trueskipArchDependent: falseunderef:# Whether to skip (*x).method() calls where x is a pointer receiver.# Default: trueskipRecvDeref: falseunnamedResult:# Whether to check exported functions.checkExported: true
gocyclo
linters-settings:gocyclo:# Minimal code complexity to report.# Default: 30 (but we recommend 10-20)min-complexity: 10
godot
linters-settings:godot:# Comments to be checked: `declarations`, `toplevel`, or `all`.# Default: declarationsscope: toplevel# List of regexps for excluding particular comment lines from check.exclude:# Exclude todo and fixme comments.- "^fixme:"- "^todo:"# Check that each sentence ends with a period.# Default: trueperiod: false# Check that each sentence starts with a capital letter.# Default: falsecapital: true
godox
linters-settings:godox:# Report any comments starting with keywords, this is useful for TODO or FIXME comments that# might be left in the code accidentally and should be resolved before merging.# Default: TODO, BUG, and FIXME.keywords:- NOTE- OPTIMIZE # marks code that should be optimized before merging- HACK # marks hack-around that should be removed before merging
gofmt
linters-settings:gofmt:# Simplify code: gofmt with `-s` option.# Default: truesimplify: false
gofumpt
linters-settings:gofumpt:# Select the Go version to target.# Default: 1.15lang-version: "1.17"# Choose whether to use the extra rules.# Default: falseextra-rules: true
goheader
linters-settings:goheader:# Supports two types 'const` and `regexp`.# Values can be used recursively.values:const:# Define here const type values in format k:v.# For example:COMPANY: MY COMPANYregexp:# Define here regexp type values.# for example:AUTHOR: .*@mycompany\.com# The template use for checking.template: |-# Put here copyright header template for source code files# For example:# Note: {{ YEAR }} is a builtin value that returns the year relative to the current machine time.## {{ AUTHOR }} {{ COMPANY }} {{ YEAR }}# SPDX-License-Identifier: Apache-2.0# Licensed under the Apache License, Version 2.0 (the "License");# you may not use this file except in compliance with the License.# You may obtain a copy of the License at:# http://www.apache.org/licenses/LICENSE-2.0# Unless required by applicable law or agreed to in writing, software# distributed under the License is distributed on an "AS IS" BASIS,# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.# See the License for the specific language governing permissions and# limitations under the License.# As alternative of directive 'template', you may put the path to file with the template source.# Useful if you need to load the template from a specific file.template-path: /path/to/my/template.tmpl
goimports
linters-settings:goimports:# Put imports beginning with prefix after 3rd-party packages.# It's a comma-separated list of prefixes.local-prefixes: github.com/org/project
golint
linters-settings:golint:# Minimal confidence for issues.# Default: 0.8min-confidence: 0.7
gomnd
linters-settings:gomnd:# List of enabled checks, see https://github.com/tommy-muehle/go-mnd/#checks for description.checks:- argument- case- condition- operation- return- assign# List of numbers to exclude from analysis.# The numbers should be written as string.# Values always ignored: "1", "1.0", "0" and "0.0"ignored-numbers:- '0666'- '0755'- '42'# List of file patterns to exclude from analysis.# Values always ignored: `.+_test.go`ignored-files:- 'magic1_.*.go'# List of function patterns to exclude from analysis.# Values always ignored: `time.Time`ignored-functions:- 'math.*'- 'http.StatusText'
gomoddirectives
linters-settings:gomoddirectives:# Allow local `replace` directives.replace-local: false# List of allowed `replace` directives.# Default: []replace-allow-list:- launchpad.net/gocheck# Allow to not explain why the version has been retracted in the `retract` directives.# Default: falseretract-allow-no-explanation: false# Forbid the use of the `exclude` directives.# Default: falseexclude-forbidden: false
gomodguard
linters-settings:gomodguard:allowed:# List of allowed modules.modules:- gopkg.in/yaml.v2# List of allowed module domains.domains:- golang.orgblocked:# List of blocked modules.modules:# Blocked module.- github.com/uudashr/go-module:# Recommended modules that should be used instead. (Optional)recommendations:- golang.org/x/mod# Reason why the recommended module should be used. (Optional)reason: "`mod` is the official go.mod parser library."# List of blocked module version constraints.versions:# Blocked module with version constraint.- github.com/mitchellh/go-homedir:# Version constraint, see https://github.com/Masterminds/semver#basic-comparisons.version: "< 1.1.0"# Reason why the version constraint exists. (Optional)reason: "testing if blocked version constraint works."# Set to true to raise lint issues for packages that are loaded from a local path via replace directive.local_replace_directives: false
gosimple
linters-settings:gosimple:# Select the Go version to target.# Default: 1.13go: "1.15"# https://staticcheck.io/docs/options#checkschecks: ["all"]
gosec
linters-settings:gosec:# To select a subset of rules to run.# Available rules: https://github.com/securego/gosec#available-rulesincludes:- G101- G102- G103- G104- G106- G107- G108- G109- G110- G201- G202- G203- G204- G301- G302- G303- G304- G305- G306- G307- G401- G402- G403- G404- G501- G502- G503- G504- G505- G601# To specify a set of rules to explicitly exclude.# Available rules: https://github.com/securego/gosec#available-rulesexcludes:- G101- G102- G103- G104- G106- G107- G108- G109- G110- G201- G202- G203- G204- G301- G302- G303- G304- G305- G306- G307- G401- G402- G403- G404- G501- G502- G503- G504- G505- G601# Exclude generated files# Default: falseexclude-generated: true# Filter out the issues with a lower severity than the given value.# Valid options are: low, medium, high.# Default: lowseverity: medium# Filter out the issues with a lower confidence than the given value.# Valid options are: low, medium, high.# Default: lowconfidence: medium# To specify the configuration of rules.# The configuration of rules is not fully documented by gosec:# https://github.com/securego/gosec#configuration# https://github.com/securego/gosec/blob/569328eade2ccbad4ce2d0f21ee158ab5356a5cf/rules/rulelist.go#L60-L102config:G306: "0600"G101:pattern: "(?i)example"ignore_entropy: falseentropy_threshold: "80.0"per_char_threshold: "3.0"truncate: "32"
govet
linters-settings:govet:# Report about shadowed variables.# Default: falsecheck-shadowing: true# Settings per analyzer.settings:# Analyzer name, run `go tool vet help` to see all analyzers.printf:# Run `go tool vet help printf` to see available settings for `printf` analyzer.funcs:- (github.com/golangci/golangci-lint/pkg/logutils.Log).Infof- (github.com/golangci/golangci-lint/pkg/logutils.Log).Warnf- (github.com/golangci/golangci-lint/pkg/logutils.Log).Errorf- (github.com/golangci/golangci-lint/pkg/logutils.Log).Fatalf# Disable all analyzers.# Default: falsedisable-all: true# Enable analyzers by name.# Run `go tool vet help` to see all analyzers.enable:- asmdecl- assign- atomic- atomicalign- bools- buildtag- cgocall- composites- copylocks- deepequalerrors- errorsas- fieldalignment- findcall- framepointer- httpresponse- ifaceassert- loopclosure- lostcancel- nilfunc- nilness- printf- reflectvaluecompare- shadow- shift- sigchanyzer- sortslice- stdmethods- stringintconv- structtag- testinggoroutine- tests- unmarshal- unreachable- unsafeptr- unusedresult- unusedwrite# Enable all analyzers.# Default: falseenable-all: true# Disable analyzers by name.# Run `go tool vet help` to see all analyzers.disable:- asmdecl- assign- atomic- atomicalign- bools- buildtag- cgocall- composites- copylocks- deepequalerrors- errorsas- fieldalignment- findcall- framepointer- httpresponse- ifaceassert- loopclosure- lostcancel- nilfunc- nilness- printf- reflectvaluecompare- shadow- shift- sigchanyzer- sortslice- stdmethods- stringintconv- structtag- testinggoroutine- tests- unmarshal- unreachable- unsafeptr- unusedresult- unusedwrite
grouper
linters-settings:grouper:# Require the use of a single global 'const' declaration only.# Default: falseconst-require-single-const: true# Require the use of grouped global 'const' declarations.# Default: falseconst-require-grouping: true# Require the use of a single 'import' declaration only.# Default: falseimport-require-single-import: true# Require the use of grouped 'import' declarations.# Default: falseimport-require-grouping: true# Require the use of a single global 'type' declaration only.# Default: falsetype-require-single-type: true# Require the use of grouped global 'type' declarations.# Default: falsetype-require-grouping: true# Require the use of a single global 'var' declaration only.# Default: falsevar-require-single-var: true# Require the use of grouped global 'var' declarations.# Default: falsevar-require-grouping: true
ifshort
linters-settings:ifshort:# Maximum length of variable declaration measured in number of lines, after which linter won't suggest using short syntax.# Has higher priority than max-decl-chars.# Default: 1max-decl-lines: 2# Maximum length of variable declaration measured in number of characters, after which linter won't suggest using short syntax.# Default: 30max-decl-chars: 40
importas
linters-settings:importas:# Do not allow unaliased imports of aliased packages.# Default: falseno-unaliased: true# Do not allow non-required aliases.# Default: falseno-extra-aliases: true# List of aliasesalias:# Using `servingv1` alias for `knative.dev/serving/pkg/apis/serving/v1` package.- pkg: knative.dev/serving/pkg/apis/serving/v1alias: servingv1# Using `autoscalingv1alpha1` alias for `knative.dev/serving/pkg/apis/autoscaling/v1alpha1` package.- pkg: knative.dev/serving/pkg/apis/autoscaling/v1alpha1alias: autoscalingv1alpha1# You can specify the package path by regular expression,# and alias by regular expression expansion syntax like below.# see https://github.com/julz/importas#use-regular-expression for details- pkg: knative.dev/serving/pkg/apis/(\w+)/(v[\w\d]+)alias: $1$2
ireturn
linters-settings:ireturn:# ireturn allows using `allow` and `reject` settings at the same time.# Both settings are lists of the keywords and regular expressions matched to interface or package names.# keywords:# - `empty` for `interface{}`# - `error` for errors# - `stdlib` for standard library# - `anon` for anonymous interfaces# By default, it allows using errors, empty interfaces, anonymous interfaces,# and interfaces provided by the standard library.allow:- anon- error- empty- stdlib# You can specify idiomatic endings for interface- (or|er)$# reject-list of interfacesreject:- github.com\/user\/package\/v4\.Type
lll
linters-settings:lll:# Max line length, lines longer will be reported.# '\t' is counted as 1 character by default, and can be changed with the tab-width option.# Default: 120.line-length: 120# Tab width in spaces.# Default: 1tab-width: 1
maintidx
linters-settings:maintidx:# Show functions with maintainability index lower than N.# A high index indicates better maintainability (it's kind of the opposite of complexity).# Default: 20under: 100
makezero
linters-settings:makezero:# Allow only slices initialized with a length of zero.# Default: falsealways: false
maligned
linters-settings:maligned:# Print struct with more effective memory layout or not.# Default: falsesuggest-new: true
misspell
linters-settings:misspell:# Correct spellings using locale preferences for US or UK.# Setting locale to US will correct the British spelling of 'colour' to 'color'.# Default is to use a neutral variety of English.locale: USignore-words:- someword
nakedret
linters-settings:nakedret:# Make an issue if func has more lines of code than this setting, and it has naked returns.# Default: 30max-func-lines: 31
nestif
linters-settings:nestif:# Minimal complexity of if statements to report.# Default: 5min-complexity: 4
nilnil
linters-settings:nilnil:# Checks that there is no simultaneous return of `nil` error and an invalid value.# Default: ptr, func, iface, map, chanchecked-types:- ptr- func- iface- map- chan
nlreturn
linters-settings:nlreturn:# Size of the block (including return statement that is still "OK")# so no return split required.# Default: 1block-size: 2
nolintlint
linters-settings:nolintlint:# Disable to ensure that all nolint directives actually have an effect.# Default: falseallow-unused: true# Disable to ensure that nolint directives don't have a leading space.# Default: trueallow-leading-space: false# Exclude following linters from requiring an explanation.# Default: []allow-no-explanation: []# Enable to require an explanation of nonzero length after each nolint directive.# Default: falserequire-explanation: true# Enable to require nolint directives to mention the specific linter being suppressed.# Default: falserequire-specific: true
prealloc
linters-settings:prealloc:# IMPORTANT: we don't recommend using this linter before doing performance profiling.# For most programs usage of prealloc will be a premature optimization.# Report pre-allocation suggestions only on simple loops that have no returns/breaks/continues/gotos in them.# Default: truesimple: false# Report pre-allocation suggestions on range loops.# Default: truerange-loops: false# Report pre-allocation suggestions on for loops.# Default: falsefor-loops: true
predeclared
linters-settings:predeclared:# Comma-separated list of predeclared identifiers to not report on.# Default: ""ignore: "new,int"# Include method names and field names (i.e., qualified names) in checks.# Default: falseq: true
promlinter
linters-settings:promlinter:# Promlinter cannot infer all metrics name in static analysis.# Enable strict mode will also include the errors caused by failing to parse the args.# Default: falsestrict: true# Please refer to https://github.com/yeya24/promlinter#usage for detailed usage.disabled-linters:- Help- MetricUnits- Counter- HistogramSummaryReserved- MetricTypeInName- ReservedChars- CamelCase- UnitAbbreviations
revive
linters-settings:revive:# Maximum number of open files at the same time.# https://github.com/mgechev/revive#command-line-flags# Defaults to unlimited.max-open-files: 2048# See https://github.com/mgechev/revive#available-rules for details.ignore-generated-header: trueseverity: warningenable-all-rules: false# confidence: 0.8# error-code: 0# warning-code: 0rules:# https://github.com/mgechev/revive/blob/master/RULES_DESCRIPTIONS.md#add-constant- name: add-constantseverity: warningdisabled: falsearguments:- maxLitCount: "3"allowStrs: '""'allowInts: "0,1,2"allowFloats: "0.0,0.,1.0,1.,2.0,2."# https://github.com/mgechev/revive/blob/master/RULES_DESCRIPTIONS.md#atomic- name: argument-limitseverity: warningdisabled: falsearguments: [4]# https://github.com/mgechev/revive/blob/master/RULES_DESCRIPTIONS.md#atomic- name: atomicseverity: warningdisabled: false# https://github.com/mgechev/revive/blob/master/RULES_DESCRIPTIONS.md#banned-characters- name: banned-charactersseverity: warningdisabled: falsearguments: ["Ω", "Σ", "σ", "7"]# https://github.com/mgechev/revive/blob/master/RULES_DESCRIPTIONS.md#bare-return- name: bare-returnseverity: warningdisabled: false# https://github.com/mgechev/revive/blob/master/RULES_DESCRIPTIONS.md#blank-imports- name: blank-importsseverity: warningdisabled: false# https://github.com/mgechev/revive/blob/master/RULES_DESCRIPTIONS.md#bool-literal-in-expr- name: bool-literal-in-exprseverity: warningdisabled: false# https://github.com/mgechev/revive/blob/master/RULES_DESCRIPTIONS.md#call-to-gc- name: call-to-gcseverity: warningdisabled: false# https://github.com/mgechev/revive/blob/master/RULES_DESCRIPTIONS.md#cognitive-complexity- name: cognitive-complexityseverity: warningdisabled: falsearguments: [7]# https://github.com/mgechev/revive/blob/master/RULES_DESCRIPTIONS.md#confusing-naming- name: confusing-namingseverity: warningdisabled: false# https://github.com/mgechev/revive/blob/master/RULES_DESCRIPTIONS.md#confusing-results- name: confusing-resultsseverity: warningdisabled: false# https://github.com/mgechev/revive/blob/master/RULES_DESCRIPTIONS.md#constant-logical-expr- name: constant-logical-exprseverity: warningdisabled: false# https://github.com/mgechev/revive/blob/master/RULES_DESCRIPTIONS.md#context-as-argument- name: context-as-argumentseverity: warningdisabled: false# https://github.com/mgechev/revive/blob/master/RULES_DESCRIPTIONS.md#context-keys-type- name: context-keys-typeseverity: warningdisabled: false# https://github.com/mgechev/revive/blob/master/RULES_DESCRIPTIONS.md#cyclomatic- name: cyclomaticseverity: warningdisabled: falsearguments: [3]# https://github.com/mgechev/revive/blob/master/RULES_DESCRIPTIONS.md#deep-exit- name: deep-exitseverity: warningdisabled: false# https://github.com/mgechev/revive/blob/master/RULES_DESCRIPTIONS.md#defer- name: deferseverity: warningdisabled: falsearguments:- ["call-chain", "loop"]# https://github.com/mgechev/revive/blob/master/RULES_DESCRIPTIONS.md#dot-imports- name: dot-importsseverity: warningdisabled: false# https://github.com/mgechev/revive/blob/master/RULES_DESCRIPTIONS.md#duplicated-imports- name: duplicated-importsseverity: warningdisabled: false# https://github.com/mgechev/revive/blob/master/RULES_DESCRIPTIONS.md#early-return- name: early-returnseverity: warningdisabled: false# https://github.com/mgechev/revive/blob/master/RULES_DESCRIPTIONS.md#empty-block- name: empty-blockseverity: warningdisabled: false# https://github.com/mgechev/revive/blob/master/RULES_DESCRIPTIONS.md#empty-lines- name: empty-linesseverity: warningdisabled: false# https://github.com/mgechev/revive/blob/master/RULES_DESCRIPTIONS.md#error-naming- name: error-namingseverity: warningdisabled: false# https://github.com/mgechev/revive/blob/master/RULES_DESCRIPTIONS.md#error-return- name: error-returnseverity: warningdisabled: false# https://github.com/mgechev/revive/blob/master/RULES_DESCRIPTIONS.md#error-strings- name: error-stringsseverity: warningdisabled: false# https://github.com/mgechev/revive/blob/master/RULES_DESCRIPTIONS.md#errorf- name: errorfseverity: warningdisabled: false# https://github.com/mgechev/revive/blob/master/RULES_DESCRIPTIONS.md#exported- name: exportedseverity: warningdisabled: falsearguments:- "checkPrivateReceivers"- "sayRepetitiveInsteadOfStutters"# https://github.com/mgechev/revive/blob/master/RULES_DESCRIPTIONS.md#file-header- name: file-headerseverity: warningdisabled: falsearguments:- This is the text that must appear at the top of source files.# https://github.com/mgechev/revive/blob/master/RULES_DESCRIPTIONS.md#flag-parameter- name: flag-parameterseverity: warningdisabled: false# https://github.com/mgechev/revive/blob/master/RULES_DESCRIPTIONS.md#function-result-limit- name: function-result-limitseverity: warningdisabled: falsearguments: [2]# https://github.com/mgechev/revive/blob/master/RULES_DESCRIPTIONS.md#function-length- name: function-lengthseverity: warningdisabled: falsearguments: [10, 0]# https://github.com/mgechev/revive/blob/master/RULES_DESCRIPTIONS.md#get-return- name: get-returnseverity: warningdisabled: false# https://github.com/mgechev/revive/blob/master/RULES_DESCRIPTIONS.md#identical-branches- name: identical-branchesseverity: warningdisabled: false# https://github.com/mgechev/revive/blob/master/RULES_DESCRIPTIONS.md#if-return- name: if-returnseverity: warningdisabled: false# https://github.com/mgechev/revive/blob/master/RULES_DESCRIPTIONS.md#increment-decrement- name: increment-decrementseverity: warningdisabled: false# https://github.com/mgechev/revive/blob/master/RULES_DESCRIPTIONS.md#indent-error-flow- name: indent-error-flowseverity: warningdisabled: false# https://github.com/mgechev/revive/blob/master/RULES_DESCRIPTIONS.md#imports-blacklist- name: imports-blacklistseverity: warningdisabled: falsearguments:- "crypto/md5"- "crypto/sha1"# https://github.com/mgechev/revive/blob/master/RULES_DESCRIPTIONS.md#import-shadowing- name: import-shadowingseverity: warningdisabled: false# https://github.com/mgechev/revive/blob/master/RULES_DESCRIPTIONS.md#line-length-limit- name: line-length-limitseverity: warningdisabled: falsearguments: [80]# https://github.com/mgechev/revive/blob/master/RULES_DESCRIPTIONS.md#max-public-structs- name: max-public-structsseverity: warningdisabled: falsearguments: [3]# https://github.com/mgechev/revive/blob/master/RULES_DESCRIPTIONS.md#modifies-parameter- name: modifies-parameterseverity: warningdisabled: false# https://github.com/mgechev/revive/blob/master/RULES_DESCRIPTIONS.md#modifies-value-receiver- name: modifies-value-receiverseverity: warningdisabled: false# https://github.com/mgechev/revive/blob/master/RULES_DESCRIPTIONS.md#nested-structs- name: nested-structsseverity: warningdisabled: false# https://github.com/mgechev/revive/blob/master/RULES_DESCRIPTIONS.md#optimize-operands-order- name: optimize-operands-orderseverity: warningdisabled: false# https://github.com/mgechev/revive/blob/master/RULES_DESCRIPTIONS.md#package-comments- name: package-commentsseverity: warningdisabled: false# https://github.com/mgechev/revive/blob/master/RULES_DESCRIPTIONS.md#range- name: rangeseverity: warningdisabled: false# https://github.com/mgechev/revive/blob/master/RULES_DESCRIPTIONS.md#range-val-in-closure- name: range-val-in-closureseverity: warningdisabled: false# https://github.com/mgechev/revive/blob/master/RULES_DESCRIPTIONS.md#range-val-address- name: range-val-addressseverity: warningdisabled: false# https://github.com/mgechev/revive/blob/master/RULES_DESCRIPTIONS.md#receiver-naming- name: receiver-namingseverity: warningdisabled: false# https://github.com/mgechev/revive/blob/master/RULES_DESCRIPTIONS.md#redefines-builtin-id- name: redefines-builtin-idseverity: warningdisabled: false# https://github.com/mgechev/revive/blob/master/RULES_DESCRIPTIONS.md#string-of-int- name: string-of-intseverity: warningdisabled: false# https://github.com/mgechev/revive/blob/master/RULES_DESCRIPTIONS.md#string-format- name: string-formatseverity: warningdisabled: falsearguments:- - 'core.WriteError[1].Message'- '/^([^A-Z]|$)/'- must not start with a capital letter- - 'fmt.Errorf[0]'- '/(^|[^\.!?])$/'- must not end in punctuation- - panic- '/^[^\n]*$/'- must not contain line breaks# https://github.com/mgechev/revive/blob/master/RULES_DESCRIPTIONS.md#struct-tag- name: struct-tagseverity: warningdisabled: false# https://github.com/mgechev/revive/blob/master/RULES_DESCRIPTIONS.md#superfluous-else- name: superfluous-elseseverity: warningdisabled: false# https://github.com/mgechev/revive/blob/master/RULES_DESCRIPTIONS.md#time-equal- name: time-equalseverity: warningdisabled: false# https://github.com/mgechev/revive/blob/master/RULES_DESCRIPTIONS.md#time-naming- name: time-namingseverity: warningdisabled: false# https://github.com/mgechev/revive/blob/master/RULES_DESCRIPTIONS.md#var-naming- name: var-namingseverity: warningdisabled: falsearguments:- ["ID"] # AllowList- ["VM"] # DenyList# https://github.com/mgechev/revive/blob/master/RULES_DESCRIPTIONS.md#var-declaration- name: var-declarationseverity: warningdisabled: false# https://github.com/mgechev/revive/blob/master/RULES_DESCRIPTIONS.md#unconditional-recursion- name: unconditional-recursionseverity: warningdisabled: false# https://github.com/mgechev/revive/blob/master/RULES_DESCRIPTIONS.md#unexported-naming- name: unexported-namingseverity: warningdisabled: false# https://github.com/mgechev/revive/blob/master/RULES_DESCRIPTIONS.md#unexported-return- name: unexported-returnseverity: warningdisabled: false# https://github.com/mgechev/revive/blob/master/RULES_DESCRIPTIONS.md#unhandled-error- name: unhandled-errorseverity: warningdisabled: falsearguments:- "fmt.Printf"- "myFunction"# https://github.com/mgechev/revive/blob/master/RULES_DESCRIPTIONS.md#unnecessary-stmt- name: unnecessary-stmtseverity: warningdisabled: false# https://github.com/mgechev/revive/blob/master/RULES_DESCRIPTIONS.md#unreachable-code- name: unreachable-codeseverity: warningdisabled: false# https://github.com/mgechev/revive/blob/master/RULES_DESCRIPTIONS.md#unused-parameter- name: unused-parameterseverity: warningdisabled: false# https://github.com/mgechev/revive/blob/master/RULES_DESCRIPTIONS.md#unused-receiver- name: unused-receiverseverity: warningdisabled: false# https://github.com/mgechev/revive/blob/master/RULES_DESCRIPTIONS.md#useless-break- name: useless-breakseverity: warningdisabled: false# https://github.com/mgechev/revive/blob/master/RULES_DESCRIPTIONS.md#waitgroup-by-value- name: waitgroup-by-valueseverity: warningdisabled: false
rowserrcheck
linters-settings:rowserrcheck:packages:- github.com/jmoiron/sqlx
staticcheck
linters-settings:staticcheck:# Select the Go version to target.# Default: 1.13go: "1.15"# https://staticcheck.io/docs/options#checkschecks: ["all"]
stylecheck
linters-settings:stylecheck:# Select the Go version to target.# Default: 1.13go: "1.15"# https://staticcheck.io/docs/options#checkschecks: ["all", "-ST1000", "-ST1003", "-ST1016", "-ST1020", "-ST1021", "-ST1022"]# https://staticcheck.io/docs/options#dot_import_whitelistdot-import-whitelist:- fmt# https://staticcheck.io/docs/options#initialismsinitialisms: ["ACL", "API", "ASCII", "CPU", "CSS", "DNS", "EOF", "GUID", "HTML", "HTTP", "HTTPS", "ID", "IP", "JSON", "QPS", "RAM", "RPC", "SLA", "SMTP", "SQL", "SSH", "TCP", "TLS", "TTL", "UDP", "UI", "GID", "UID", "UUID", "URI", "URL", "UTF8", "VM", "XML", "XMPP", "XSRF", "XSS"]# https://staticcheck.io/docs/options#http_status_code_whitelisthttp-status-code-whitelist: ["200", "400", "404", "500"]
tagliatelle
linters-settings:tagliatelle:# Check the struck tag name case.case:# Use the struct field name to check the name of the struct tag.# Default: falseuse-field-name: truerules:# Any struct tag type can be used.# Support string case: `camel`, `pascal`, `kebab`, `snake`, `goCamel`, `goPascal`, `goKebab`, `goSnake`, `upper`, `lower`json: camelyaml: camelxml: camelbson: camelavro: snakemapstructure: kebab
tenv
linters-settings:tenv:# The option `all` will run against whole test files (`_test.go`) regardless of method/function signatures.# By default, only methods that take `*testing.T`, `*testing.B`, and `testing.TB` as arguments are checked.all: false
testpackage
linters-settings:testpackage:# regexp pattern to skip filesskip-regexp: (export|internal)_test\.go
thelper
linters-settings:thelper:# The following configurations enable all checks.# All checks are enabled by default.test:first: falsename: falsebegin: falsebenchmark:first: falsename: falsebegin: falsetb:first: falsename: falsebegin: false
unparam
linters-settings:unparam:# Inspect exported functions.## Set to true if no external program/library imports your code.# XXX: if you enable this setting, unparam will report a lot of false-positives in text editors:# if it's called for subdir of a project it can't find external interfaces. All text editor integrations# with golangci-lint call it on a directory with the changed file.## Default: falsecheck-exported: true
varcheck
linters-settings:varcheck:# Check usage of exported fields and variables.# Default: falseexported-fields: true
varnamelen
linters-settings:varnamelen:# The longest distance, in source lines, that is being considered a "small scope".# Variables used in at most this many lines will be ignored.# Default: 5max-distance: 6# The minimum length of a variable's name that is considered "long".# Variable names that are at least this long will be ignored.# Default: 3min-name-length: 2# Check method receiver names.# Default: falsecheck-receiver: true# Check named return values.# Default: falsecheck-return: true# Ignore "ok" variables that hold the bool return value of a type assertion.# Default: falseignore-type-assert-ok: true# Ignore "ok" variables that hold the bool return value of a map index.# Default: falseignore-map-index-ok: true# Ignore "ok" variables that hold the bool return value of a channel receive.# Default: falseignore-chan-recv-ok: true# Optional list of variable names that should be ignored completely.# Default: []ignore-names:- err# Optional list of variable declarations that should be ignored completely.# Entries must be in the form of "<variable name> <type>" or "<variable name> *<type>"# for variables, or "const <name>" for constants.# Default: []ignore-decls:- c echo.Context- t testing.T- f *foo.Bar- e error- i int- const C
whitespace
linters-settings:whitespace:# Enforces newlines (or comments) after every multi-line if statement.# Default: falsemulti-if: true# Enforces newlines (or comments) after every multi-line function signature.# Default: falsemulti-func: true
wrapcheck
linters-settings:wrapcheck:# An array of strings that specify substrings of signatures to ignore.# If this set, it will override the default set of ignored signatures.# See https://github.com/tomarrell/wrapcheck#configuration for more information.ignoreSigs:- .Errorf(- errors.New(- errors.Unwrap(- .Wrap(- .Wrapf(- .WithMessage(- .WithMessagef(- .WithStack(ignoreSigRegexps:- \.New.*Error\(ignorePackageGlobs:- encoding/*- github.com/pkg/*
wsl
linters-settings:wsl:# See https://github.com/bombsimon/wsl/blob/master/doc/configuration.md for documentation of available settings.# These are the defaults for `golangci-lint`.# Controls if you may cuddle assignments and anything without needing an empty line between them.# Default: falseallow-assign-and-anything: false# Controls if you may cuddle assignments and calls without needing an empty line between them.# Default: trueallow-assign-and-call: true# Controls if you're allowed to cuddle multiple declarations.# This is false by default to encourage you to group them in one var block.# One major benefit with this is that if the variables are assigned the assignments will be tabulated.# Default: falseallow-cuddle-declarations: false# Controls if you may cuddle assignments even if they span over multiple lines.# Default: trueallow-multiline-assign: true# This option allows whitespace after each comment group that begins a block.# Default: falseallow-separated-leading-comment: false# Controls if blocks can end with comments.# This is not encouraged sine it's usually code smell but might be useful do improve understanding or learning purposes.# To be allowed there must be no whitespace between the comment and the last statement or the comment and the closing brace.# Default: falseallow-trailing-comment: false# Can be set to force trailing newlines at the end of case blocks to improve readability.# If the number of lines (including comments) in a case block exceeds this number# a linter error will be yielded if the case does not end with a newline.# Default: 0force-case-trailing-whitespace: 0# Enforces that an `if` statement checking an error variable is cuddled# with the line that assigned that error variable.# Default: falseforce-err-cuddling: false# Enforces that an assignment which is actually a short declaration (using `:=`)# is only allowed to cuddle with other short declarations, and not plain assignments, blocks, etc.# This rule helps make declarations stand out by themselves, much the same as grouping var statement.# Default: falseforce-short-decl-cuddling: false# Controls if the checks for slice append should be "strict"# in the sense that it will only allow these assignments to be cuddled with variables being appended.# Default: truestrict-append: true
custom
Edit this page on GitHub
linters-settings:# The custom section can be used to define linter plugins to be loaded at runtime.# See README documentation for more info.custom:# Each custom linter should have a unique name.example:# The path to the plugin *.so. Can be absolute or local.# Required for each custom linter.path: /path/to/example.so# The description of the linter.# Optional.description: This is an example usage of a plugin linter.# Intended to point to the repo location of the linter.# Optional.original-url: github.com/golangci/example-linter