You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: .golangci.yml
+1-1Lines changed: 1 addition & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -59,7 +59,6 @@ linters:
59
59
- exportloopref # checks for pointers to enclosing loop variables
60
60
- forbidigo # Forbids identifiers
61
61
- forcetypeassert # finds forced type assertions
62
-
- funlen # Tool for detection of long functions
63
62
- gci # Gci control golang package import order and make it always deterministic.
64
63
- gochecknoglobals # Checks that no globals are present in Go code
65
64
- gocognit # Computes and checks the cognitive complexity of functions
@@ -106,6 +105,7 @@ linters:
106
105
- whitespace # Tool for detection of leading and trailing whitespace
107
106
disable:
108
107
- depguard # Go linter that checks if package imports are in a list of acceptable packages
108
+
- funlen # Tool for detection of long functions
109
109
- gochecknoinits # Checks that no init functions are present in Go code
110
110
- gomodguard # Allow and block list linter for direct Go module dependencies. This is different from depguard where there are different block types for example version constraints and module recommendations.
111
111
- interfacebloat # A linter that checks length of interface.
0 commit comments