forked from grafana/mimir
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.golangci.yml
38 lines (30 loc) · 795 Bytes
/
.golangci.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
output:
format: line-number
linters:
enable:
- goimports
- revive
- gofmt
- misspell
- errorlint
linters-settings:
errcheck:
# path to a file containing a list of functions to exclude from checking
# see https://github.com/kisielk/errcheck#excluding-functions for details
exclude: ./.errcheck-exclude
goimports:
local-prefixes: "github.com/grafana/mimir"
errorlint:
# Check for plain error comparisons.
comparison: true
# Do not check for plain type assertions and type switches.
asserts: false
# Do not check whether fmt.Errorf uses the %w verb for formatting errors.
errorf: false
run:
timeout: 5m
# List of build tags, all linters use it.
build-tags:
- netgo
- requires_docker
- requires_libpcap