Skip to content

Commit

Permalink
removed old linters (#557)
Browse files Browse the repository at this point in the history
  • Loading branch information
coltoneshaw authored Feb 10, 2023
1 parent d3bbaeb commit f070a8b
Showing 1 changed file with 0 additions and 3 deletions.
3 changes: 0 additions & 3 deletions .golangci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -35,16 +35,13 @@ linters-settings:
linters:
disable-all: true
enable:
- deadcode # Finds unused code
- gofmt # Checks whether code was gofmt-ed
- golint # Differs from gofmt. Gofmt reformats Go source code, whereas golint prints out style mistakes
- gosimple # Linter for Go source code that specializes in simplifying a code
- govet # Examines Go source code and reports suspicious constructs, such as Printf calls whose arguments do not align with the format string
- ineffassign # Detects when assignments to existing variables are not used
- structcheck # Finds unused struct fields
- unconvert # Removes unnecessary type conversions
- unused # Checks Go code for unused constants, variables, functions and types
- varcheck # Finds unused global variables and constants
- exportloopref # Checks for pointers to enclosing loop variables

issues:
Expand Down

0 comments on commit f070a8b

Please sign in to comment.