File tree 2 files changed +35
-10
lines changed
2 files changed +35
-10
lines changed Original file line number Diff line number Diff line change 6
6
defaults : &defaults
7
7
working_directory : /src
8
8
docker :
9
- - image : golang:1.13
9
+ - image : golang:1.14
10
10
11
11
jobs :
12
12
lint_markdown :
36
36
- checkout
37
37
- run :
38
38
name : Install golangci-lint
39
- command : curl -sfL https://install.goreleaser .com/github.com/ golangci/golangci-lint.sh | sh -s -- -b $(go env GOPATH)/bin v1.18.0
39
+ command : curl -sSfL https://raw.githubusercontent .com/golangci/golangci-lint/master/install .sh | sh -s -- -b $(go env GOPATH)/bin v1.23.7
40
40
- run :
41
41
name : Check for Lint
42
42
command : golangci-lint run
Original file line number Diff line number Diff line change 1
1
linters :
2
- enable-all : true
3
- disable :
4
- - funlen
5
- - gochecknoglobals
6
- - gocritic
7
- - gosec
8
- - lll
9
- - scopelint
2
+ disable-all : true
3
+ enable :
4
+ - bodyclose
5
+ - deadcode
6
+ - depguard
7
+ - dogsled
8
+ - dupl
9
+ - errcheck
10
+ - gochecknoinits
11
+ - goconst
12
+ - gocyclo
13
+ - godox
14
+ - gofmt
15
+ - goimports
16
+ - golint
17
+ - goprintffuncname
18
+ - gosimple
19
+ - govet
20
+ - ineffassign
21
+ - interfacer
22
+ - maligned
23
+ - misspell
24
+ - nakedret
25
+ - prealloc
26
+ - rowserrcheck
27
+ - staticcheck
28
+ - structcheck
29
+ - stylecheck
30
+ - typecheck
31
+ - unconvert
32
+ - unparam
33
+ - unused
34
+ - varcheck
You can’t perform that action at this time.
0 commit comments