Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit 2f111e5

Browse files
committedDec 7, 2024·
docs: add missing doc
1 parent ef20438 commit 2f111e5

File tree

2 files changed

+4
-1
lines changed

2 files changed

+4
-1
lines changed
 

Diff for: ‎.golangci.next.reference.yml

+2
Original file line numberDiff line numberDiff line change
@@ -1840,6 +1840,8 @@ linters-settings:
18401840
- unusedresult
18411841
# Checks for unused writes.
18421842
- unusedwrite
1843+
# Checks for misuses of sync.WaitGroup.
1844+
- waitgroup
18431845

18441846
# Enable all analyzers.
18451847
# Default: false

Diff for: ‎jsonschema/golangci.next.jsonschema.json

+2-1
Original file line numberDiff line numberDiff line change
@@ -210,7 +210,8 @@
210210
"unreachable",
211211
"unsafeptr",
212212
"unusedresult",
213-
"unusedwrite"
213+
"unusedwrite",
214+
"waitgroup"
214215
]
215216
},
216217
"revive-rules": {

0 commit comments

Comments
 (0)
Please sign in to comment.