-
Notifications
You must be signed in to change notification settings - Fork 138
/
.golintci.yml
25 lines (23 loc) · 1.27 KB
/
.golintci.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
run:
timeout: 5m
issues-exit-code: 1
tests: true
skip-dirs-use-default: true
modules-download-mode: readonly
linters:
disable-all: true
enable:
- bodyclose # ensure HTTP response bodies are successfully closed.
- contextcheck # check we are passing context an inherited context.
- gofmt # checks whether code was gofmt-ed. By default this tool runs with -s option to check for code simplification.
- errname # checks that sentinel errors are prefixed with the `Err` and error types are suffixed with the `Error`.
- errcheck # a program for checking for unchecked errors in go programs. These unchecked errors can be critical bugs in some cases.
- errorlint # used to find code that will cause problems with the error wrapping scheme introduced in Go 1.13.
- godot # check if comments end in a period.
- misspell # finds commonly misspelled English words in comments.
- nilerr # checks that there is no simultaneous return of nil error and an invalid value.
- tparallel # detects inappropriate usage of t.Parallel() method in your Go test codes.
- unparam # reports unused function parameters.
- whitespace # detection of leading and trailing whitespace.
output:
format: colored-line-number