This repository was archived by the owner on Jun 2, 2023. It is now read-only.
File tree 4 files changed +8
-4
lines changed
4 files changed +8
-4
lines changed Original file line number Diff line number Diff line change @@ -38,4 +38,4 @@ linters:
38
38
# golangci.com configuration
39
39
# https://github.com/golangci/golangci/wiki/Configuration
40
40
service :
41
- golangci-lint-version : 1.17 .x # use fixed version to not introduce new linters unexpectedly
41
+ golangci-lint-version : 1.19 .x # use fixed version to not introduce new linters unexpectedly
Original file line number Diff line number Diff line change 1
1
repos :
2
2
- repo : https://github.com/golangci/golangci-lint
3
- rev : v1.17 .1
3
+ rev : v1.19 .1
4
4
hooks :
5
5
- id : golangci-lint
Original file line number Diff line number Diff line change @@ -24,7 +24,7 @@ require (
24
24
github.com/getsentry/raven-go v0.2.0
25
25
github.com/go-kit/kit v0.9.0
26
26
github.com/golang/mock v1.3.1
27
- github.com/golangci/golangci-lint v1.17 .1
27
+ github.com/golangci/golangci-lint v1.19 .1
28
28
github.com/gomodule/redigo v2.0.0+incompatible // indirect
29
29
github.com/google/go-github v0.0.0-20180123235826-b1f138353a62
30
30
github.com/google/go-querystring v1.0.0 // indirect
@@ -69,3 +69,5 @@ require (
69
69
gopkg.in/redsync.v1 v1.0.1
70
70
gopkg.in/yaml.v2 v2.2.2
71
71
)
72
+
73
+ go 1.13
Original file line number Diff line number Diff line change @@ -35,10 +35,12 @@ var availableGolangciLintVersions = map[int]map[int][]int{
35
35
15 : {0 },
36
36
16 : {0 },
37
37
17 : {0 , 1 },
38
+ 18 : {0 },
39
+ 19 : {0 , 1 },
38
40
},
39
41
}
40
42
41
- const defaultGolangciLintVersion = "1.17 .x"
43
+ const defaultGolangciLintVersion = "1.19 .x"
42
44
43
45
type Preparer struct {
44
46
cfg config.Config
You can’t perform that action at this time.
0 commit comments