We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 29f4d35 commit b997a2eCopy full SHA for b997a2e
.golangci.yaml
@@ -1,9 +1,10 @@
1
-version: "2"
+# This file contains all available configuration options
2
+# with their default values.
3
4
# options for analysis running
5
run:
6
# Updated to match go.mod version
- go: "1.24"
7
+ go: "1.25"
8
9
# default concurrency is a available CPU number
10
concurrency: 4
@@ -15,14 +16,12 @@ run:
15
16
issues-exit-code: 1
17
18
linters:
- default: none
19
enable:
20
- gocyclo
21
- errcheck
22
- godox
23
-
24
# all available settings of specific linters
25
-linters.settings:
+linters-settings:
26
errcheck:
27
# report about not checking of errors in type assertions: `a := b.(MyStruct)`;
28
# default is false: such cases aren't reported by default.
0 commit comments