mirror of
https://github.com/prometheus/node_exporter.git
synced 2024-11-09 23:24:09 -08:00
c10aa42a4f
These lead to false positives when build tags disable certain files as reported in https://github.com/prometheus/node_exporter/issues/1545 They'll get deprecated and removed eventually anyway: https://github.com/golangci/golangci-lint/issues/1841 Signed-off-by: Johannes 'fish' Ziemke <github@freigeist.org>
23 lines
489 B
YAML
23 lines
489 B
YAML
linters:
|
|
enable:
|
|
- golint
|
|
disable:
|
|
# Disable soon to deprecated[1] linters that lead to false
|
|
# positives when build tags disable certain files[2]
|
|
# 1: https://github.com/golangci/golangci-lint/issues/1841
|
|
# 2: https://github.com/prometheus/node_exporter/issues/1545
|
|
- deadcode
|
|
- unused
|
|
- structcheck
|
|
- varcheck
|
|
|
|
issues:
|
|
exclude-rules:
|
|
- path: _test.go
|
|
linters:
|
|
- errcheck
|
|
|
|
linters-settings:
|
|
errcheck:
|
|
exclude: scripts/errcheck_excludes.txt
|