docs: update documentation assets (#4998)
Co-authored-by: Fernandez Ludovic <ldez@users.noreply.github.com>
This commit is contained in:
parent
a15f9d95b6
commit
4cbc27beec
@ -70,6 +70,7 @@ output:
|
||||
# - `checkstyle`
|
||||
# - `code-climate`
|
||||
# - `junit-xml`
|
||||
# - `junit-xml-extended`
|
||||
# - `github-actions`
|
||||
# - `teamcity`
|
||||
# - `sarif`
|
||||
@ -464,6 +465,10 @@ linters-settings:
|
||||
# Default: false
|
||||
custom-order: true
|
||||
|
||||
# Drops lexical ordering for custom sections.
|
||||
# Default: false
|
||||
no-lex-order: true
|
||||
|
||||
ginkgolinter:
|
||||
# Suppress the wrong length assertion warning.
|
||||
# Default: false
|
||||
|
21
CHANGELOG.md
21
CHANGELOG.md
@ -1,5 +1,26 @@
|
||||
Follow the news and releases on [Mastodon](https://fosstodon.org/@golangcilint) and on [Twitter](https://twitter.com/golangci).
|
||||
|
||||
### v1.61.0
|
||||
|
||||
1. Enhancements
|
||||
* Add `junit-xml-extended` format
|
||||
* Exclude Swagger Codegen files by default
|
||||
2. Updated linters
|
||||
* `dupword`: from 0.0.14 to 0.1.1
|
||||
* `fatcontext`: from 0.4.0 to 0.5.2
|
||||
* `gci`: from 0.13.4 to 0.13.5 (new option `no-lex-order`)
|
||||
* `go-ruleguard`: from 0.4.2 to 0fe6f58b47b1 (fix panic with custom linters)
|
||||
* `godot`: from 1.4.16 to 1.4.17
|
||||
* `gomodguard`: from 1.3.3 to 1.3.5
|
||||
* `gosec`: disable temporarily `G407`
|
||||
* `gosec`: from ab3f6c1c83a0 to 2.21.2 (partially fix `G115`)
|
||||
* `intrange`: from 0.1.2 to 0.2.0
|
||||
* `nolintlint`: remove the empty line in the directive replacement
|
||||
3. Misc.
|
||||
* Improve runtime version parsing
|
||||
4. Documentation
|
||||
* Add additional info about `typecheck`
|
||||
|
||||
### v1.60.3
|
||||
|
||||
1. Updated linters
|
||||
|
File diff suppressed because one or more lines are too long
@ -319,7 +319,7 @@
|
||||
},
|
||||
{
|
||||
"name": "fatcontext",
|
||||
"desc": "detects nested contexts in loops",
|
||||
"desc": "detects nested contexts in loops and function literals",
|
||||
"loadMode": 575,
|
||||
"inPresets": [
|
||||
"performance"
|
||||
@ -759,7 +759,7 @@
|
||||
],
|
||||
"originalURL": "https://github.com/ckaznocha/intrange",
|
||||
"internal": false,
|
||||
"isSlow": false,
|
||||
"isSlow": true,
|
||||
"since": "v1.57.0"
|
||||
},
|
||||
{
|
||||
|
@ -520,6 +520,7 @@
|
||||
"checkstyle",
|
||||
"code-climate",
|
||||
"junit-xml",
|
||||
"junit-xml-extended",
|
||||
"github-actions",
|
||||
"teamcity",
|
||||
"sarif"
|
||||
@ -1103,6 +1104,11 @@
|
||||
"description": "Enable custom order of sections.",
|
||||
"type": "boolean",
|
||||
"default": false
|
||||
},
|
||||
"no-lex-order": {
|
||||
"description": "Drops lexical ordering for custom sections.",
|
||||
"type": "boolean",
|
||||
"default": false
|
||||
}
|
||||
}
|
||||
},
|
||||
|
Loading…
x
Reference in New Issue
Block a user