This repository was archived by the owner on Feb 17, 2025. It is now read-only.
File tree Expand file tree Collapse file tree 5 files changed +15
-12
lines changed
Expand file tree Collapse file tree 5 files changed +15
-12
lines changed Original file line number Diff line number Diff line change 1414 - uses : actions/checkout@v4
1515 - uses : actions/setup-go@v5
1616 with :
17- go-version : ' 1.22 '
17+ go-version : ' 1.23 '
1818 cache-dependency-path : ' **/go.sum'
1919 - run : ./goyek.sh -v all diff
2020 - name : Upload HTML coverage
3939 - ' 1.20'
4040 - ' 1.21'
4141 - ' 1.22'
42+ - ' 1.23'
4243 runs-on : ubuntu-latest
4344 steps :
4445 - uses : actions/checkout@v4
Original file line number Diff line number Diff line change @@ -4,11 +4,12 @@ linters-settings:
44 goimports :
55 local-prefixes : github.com/fluentassert/verify
66 govet :
7- check-shadowing : true
7+ enable-all : true
8+ disable :
9+ - fieldalignment
10+ - nilness
811 misspell :
912 locale : US
10- ignore-words :
11- - importas
1213 nolintlint :
1314 allow-leading-space : false # require machine-readable nolint directives (with no leading space)
1415 allow-unused : false # report any unused nolint directives
@@ -24,21 +25,20 @@ linters:
2425 enable :
2526 - dogsled
2627 - errcheck
27- - exportloopref
2828 - gochecknoinits
2929 - gocritic
3030 - goconst
3131 - gocyclo
3232 - gofumpt
3333 - goimports
3434 - revive
35- - gomnd
3635 - goprintffuncname
3736 - gosec
3837 - gosimple
3938 - govet
4039 - ineffassign
4140 - misspell
41+ - mnd
4242 - nolintlint
4343 - staticcheck
4444 - stylecheck
@@ -49,5 +49,5 @@ linters:
4949 - whitespace
5050
5151issues :
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 22 "[go]" : {
33 "editor.formatOnSave" : true ,
44 "editor.codeActionsOnSave" : {
5- "source.organizeImports" : true ,
5+ "source.organizeImports" : " explicit "
66 },
77 },
88 "[go.mod]" : {
99 "editor.formatOnSave" : true ,
1010 "editor.codeActionsOnSave" : {
11- "source.organizeImports" : true ,
11+ "source.organizeImports" : " explicit "
1212 },
1313 },
1414 "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.
55The format is based on [ Keep a Changelog] ( https://keepachangelog.com/en/1.1.0/ ) ,
66and this library adheres to [ Semantic Versioning] ( https://semver.org/spec/v2.0.0.html ) .
77
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
911
1012### Added
1113
Original file line number Diff line number Diff line change @@ -24,7 +24,7 @@ var mdlint = goyek.Define(goyek.Task{
2424 if len (mdFiles ) == 0 {
2525 a .Skip ("no .md files" )
2626 }
27- dockerImage := "ghcr.io/igorshubovych/markdownlint-cli:v0.36 .0"
27+ dockerImage := "ghcr.io/igorshubovych/markdownlint-cli:v0.41 .0"
2828 cmd .Exec (a , "docker run --rm -v '" + curDir + ":/workdir' " + dockerImage + " " + strings .Join (mdFiles , " " ))
2929 },
3030})
You can’t perform that action at this time.
0 commit comments