Skip to content

Commit f15e6c4

Browse files
authored
docs: improve version documentation (#5639)
1 parent 35a64da commit f15e6c4

File tree

4 files changed

+17
-14
lines changed

4 files changed

+17
-14
lines changed

.golangci.next.reference.yml

+2
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,8 @@
44
# This file is not a configuration example,
55
# it contains the exhaustive configuration with explanations of the options.
66

7+
# Defines the configuration version.
8+
# The only possible value is "2".
79
version: "2"
810

911
linters:

.golangci.reference.yml

+2
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,8 @@
44
# This file is not a configuration example,
55
# it contains the exhaustive configuration with explanations of the options.
66

7+
# Defines the configuration version.
8+
# The only possible value is "2".
79
version: "2"
810

911
linters:

docs/src/docs/usage/configuration.mdx

-8
Original file line numberDiff line numberDiff line change
@@ -42,14 +42,6 @@ The configuration file can be validated with the JSON Schema: https://golangci-l
4242

4343
{ .ConfigurationExample }
4444

45-
### `version` configuration
46-
47-
```yaml
48-
# Defines the configuration version.
49-
# The only possible value is "2".
50-
version: "2"
51-
```
52-
5345
## Command-Line Options
5446

5547
### run

scripts/website/expand_templates/linters.go

+13-6
Original file line numberDiff line numberDiff line change
@@ -206,8 +206,7 @@ type ExampleSnippetsExtractor struct {
206206

207207
func NewExampleSnippetsExtractor() *ExampleSnippetsExtractor {
208208
return &ExampleSnippetsExtractor{
209-
// TODO(ldez) replace .golangci.next.reference.yml by .golangci.reference.yml
210-
referencePath: ".golangci.next.reference.yml",
209+
referencePath: ".golangci.reference.yml",
211210
assetsPath: "assets",
212211
}
213212
}
@@ -281,11 +280,19 @@ func (e *ExampleSnippetsExtractor) extractExampleSnippets(example []byte) (*Sett
281280
}
282281

283282
if node.Value == "version" {
284-
node.HeadComment = `See the dedicated "version" documentation section.`
285-
newNode = nextNode
286-
}
283+
n := &yaml.Node{
284+
HeadComment: fmt.Sprintf("See the dedicated %q documentation section.", node.Value),
285+
Kind: node.Kind,
286+
Style: node.Style,
287+
Tag: node.Tag,
288+
Value: node.Value,
289+
Content: node.Content,
290+
}
287291

288-
globalNode.Content = append(globalNode.Content, node, newNode)
292+
globalNode.Content = append(globalNode.Content, n, nextNode)
293+
} else {
294+
globalNode.Content = append(globalNode.Content, node, newNode)
295+
}
289296

290297
if node.Value == keyLinters || node.Value == keyFormatters {
291298
for i := 0; i < len(nextNode.Content); i++ {

0 commit comments

Comments
 (0)