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
+6-2Lines changed: 6 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -29,7 +29,7 @@ linters:
29
29
- funcorder
30
30
- exhaustive
31
31
- errname # Checks that sentinel errors are prefixed with the `Err` and error types are suffixed with the `Error`.
32
-
- unparam # Reports unused function parameters
32
+
# - unparam # Reports unused function parameters
33
33
- errchkjson # Checks types passed to the json encoding functions. Reports unsupported types and reports occasions, where the check for the returned error can be omitted.
34
34
35
35
# we allow named returns (to improve readability, in the function signatures)
@@ -322,7 +322,7 @@ linters:
322
322
- name: unsecure-url-scheme
323
323
disabled: true
324
324
- name: unused-parameter
325
-
disabled: true
325
+
disabled: false
326
326
- name: use-any
327
327
disabled: true
328
328
- name: use-waitgroup-go
@@ -488,6 +488,10 @@ linters:
488
488
path: pkg/acquisition/modules/s3/source.go
489
489
text: found a struct that contains a context.Context field
0 commit comments