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
-4Lines changed: 0 additions & 4 deletions
Original file line number
Diff line number
Diff line change
@@ -33,7 +33,6 @@ linters:
33
33
- errchkjson # Checks types passed to the json encoding functions. Reports unsupported types and optionally reports occasions, where the check for the returned error can be omitted.
34
34
- errname # Checks that sentinel errors are prefixed with the `Err` and error types are suffixed with the `Error`.
35
35
- errorlint # errorlint is a linter for that can be used to find code that will cause problems with the error wrapping scheme introduced in Go 1.13.
36
-
- execinquery # Execinquery is a linter about query string checker in Query function which reads your Go src files and warning it finds.
37
36
- exportloopref # checks for pointers to enclosing loop variables
38
37
- forcetypeassert # finds forced type assertions
39
38
- gci # Gci control golang package import order and make it always deterministic.
@@ -98,21 +97,18 @@ linters:
98
97
- cyclop # checks function and package cyclomatic complexity
99
98
- depguard # Go linter that checks if package imports are in a list of acceptable packages
100
99
- exhaustive # Check exhaustiveness of enum switch statements
101
-
- exhaustivestruct # Checks if all struct's fields are initialized
102
100
- exhaustruct # Checks if all structure fields are initialized.
103
101
- forbidigo # Forbids identifiers
104
102
- funlen # Tool for detection of long functions
105
103
- gochecknoglobals # Checks that no globals are present in Go code
106
104
- gochecknoinits # Checks that no init functions are present in Go code
107
105
- godot # Check if comments end in a period
108
106
- gomnd # An analyzer to detect magic numbers.
109
-
- ifshort # Checks that your code uses short syntax for if-statements whenever possible
110
107
- inamedparam # Reports interfaces with unnamed method parameters.
111
108
- interfacebloat # A linter that checks the number of methods inside an interface
0 commit comments