forked from ActiveState/cli
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.golangci.yaml
More file actions
26 lines (24 loc) · 828 Bytes
/
.golangci.yaml
File metadata and controls
26 lines (24 loc) · 828 Bytes
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
run:
skip-dirs:
- vendor
linters-settings:
errcheck:
exclude-functions:
- (*github.com/ActiveState/termtest.ConsoleProcess).Expect
- (*github.com/ActiveState/termtest.ConsoleProcess).ExpectExitCode
- (*github.com/ActiveState/termtest.ConsoleProcess).ExpectNotExitCode
- (*github.com/ActiveState/termtest.ConsoleProcess).ExpectRe
- (*github.com/ActiveState/termtest.ConsoleProcess).ExpectLongString
- (*github.com/ActiveState/termtest.ConsoleProcess).WaitForInput
# When issues occur with linting us the snippet below to help with debugging
# linters:
# # Disable all and re-enable the default linters as a starting point.
# disable-all: true
# enable:
# - errcheck
# - gosimple
# - govet
# - ineffassign
# - staticcheck
# - typecheck
# - unused