-
Notifications
You must be signed in to change notification settings - Fork 29
/
.golangci.yml
21 lines (20 loc) · 1.02 KB
/
.golangci.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
linters:
disable-all: true # Turn off other linters
enable:
- errcheck # Errcheck is a program for checking for unchecked errors in go programs. These unchecked errors can be critical bugs in some cases
- gosimple # Linter for Go source code that specializes in simplifying a code
- govet # Vet examines Go source code and reports suspicious constructs, such as Printf calls whose arguments do not align with the format string
- ineffassign # Detects when assignments to existing variables are not used
- staticcheck # It's a set of rules from staticcheck. It's not the same thing as the staticcheck binary.
- unused # Checks Go code for unused constants, variables, functions and types.
- copyloopvar # Detects places where loop variables are copied.
linters-settings:
govet: # For linter govet, we manually enabled some of its scanning rules
enable-all: true
disable:
- fieldalignment
issues:
exclude-dirs:
- scripts
- test
- example