This repository was archived by the owner on Feb 17, 2025. It is now read-only.
File tree 5 files changed +15
-12
lines changed
5 files changed +15
-12
lines changed Original file line number Diff line number Diff line change 14
14
- uses : actions/checkout@v4
15
15
- uses : actions/setup-go@v5
16
16
with :
17
- go-version : ' 1.22 '
17
+ go-version : ' 1.23 '
18
18
cache-dependency-path : ' **/go.sum'
19
19
- run : ./goyek.sh -v all diff
20
20
- name : Upload HTML coverage
39
39
- ' 1.20'
40
40
- ' 1.21'
41
41
- ' 1.22'
42
+ - ' 1.23'
42
43
runs-on : ubuntu-latest
43
44
steps :
44
45
- uses : actions/checkout@v4
Original file line number Diff line number Diff line change @@ -4,11 +4,12 @@ linters-settings:
4
4
goimports :
5
5
local-prefixes : github.com/fluentassert/verify
6
6
govet :
7
- check-shadowing : true
7
+ enable-all : true
8
+ disable :
9
+ - fieldalignment
10
+ - nilness
8
11
misspell :
9
12
locale : US
10
- ignore-words :
11
- - importas
12
13
nolintlint :
13
14
allow-leading-space : false # require machine-readable nolint directives (with no leading space)
14
15
allow-unused : false # report any unused nolint directives
@@ -24,21 +25,20 @@ linters:
24
25
enable :
25
26
- dogsled
26
27
- errcheck
27
- - exportloopref
28
28
- gochecknoinits
29
29
- gocritic
30
30
- goconst
31
31
- gocyclo
32
32
- gofumpt
33
33
- goimports
34
34
- revive
35
- - gomnd
36
35
- goprintffuncname
37
36
- gosec
38
37
- gosimple
39
38
- govet
40
39
- ineffassign
41
40
- misspell
41
+ - mnd
42
42
- nolintlint
43
43
- staticcheck
44
44
- stylecheck
@@ -49,5 +49,5 @@ linters:
49
49
- whitespace
50
50
51
51
issues :
52
- # enable issues excluded by default
53
- exclude-use-default : false
52
+ exclude :
53
+ - EXC0001
Original file line number Diff line number Diff line change 2
2
"[go]" : {
3
3
"editor.formatOnSave" : true ,
4
4
"editor.codeActionsOnSave" : {
5
- "source.organizeImports" : true ,
5
+ "source.organizeImports" : " explicit "
6
6
},
7
7
},
8
8
"[go.mod]" : {
9
9
"editor.formatOnSave" : true ,
10
10
"editor.codeActionsOnSave" : {
11
- "source.organizeImports" : true ,
11
+ "source.organizeImports" : " explicit "
12
12
},
13
13
},
14
14
"gopls" : {
Original file line number Diff line number Diff line change @@ -5,7 +5,9 @@ All notable changes to this library are documented in this file.
5
5
The format is based on [ Keep a Changelog] ( https://keepachangelog.com/en/1.1.0/ ) ,
6
6
and this library adheres to [ Semantic Versioning] ( https://semver.org/spec/v2.0.0.html ) .
7
7
8
- ## [ Unreleased] ( https://github.com/fluentassert/verify/compare/v1.1.0...HEAD )
8
+ ## [ Unreleased] ( https://github.com/fluentassert/verify/compare/v1.2.0...HEAD )
9
+
10
+ ## [ 1.2.0] ( https://github.com/fluentassert/verify/releases/tag/v1.2.0 ) - 2024-09-10
9
11
10
12
### Added
11
13
Original file line number Diff line number Diff line change @@ -24,7 +24,7 @@ var mdlint = goyek.Define(goyek.Task{
24
24
if len (mdFiles ) == 0 {
25
25
a .Skip ("no .md files" )
26
26
}
27
- dockerImage := "ghcr.io/igorshubovych/markdownlint-cli:v0.36 .0"
27
+ dockerImage := "ghcr.io/igorshubovych/markdownlint-cli:v0.41 .0"
28
28
cmd .Exec (a , "docker run --rm -v '" + curDir + ":/workdir' " + dockerImage + " " + strings .Join (mdFiles , " " ))
29
29
},
30
30
})
You can’t perform that action at this time.
0 commit comments