Skip to content

Commit

Permalink
dissabled all linter by default - this time without unwanted changes
Browse files Browse the repository at this point in the history
  • Loading branch information
Disper committed Dec 5, 2024
1 parent 1a96580 commit 91d6f0a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .golangci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -46,14 +46,14 @@ linters-settings:
# Settings per analyzer.

linters:
disable-all: true
enable:
## enabled by default
- errcheck # checking for unchecked errors, these unchecked errors can be critical bugs in some cases
- gosimple # specializes in simplifying a code
- govet # 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
- staticcheck # is a go vet on steroids, applying a ton of static analysis checks
- typecheck # like the front-end of a Go compiler, parses and type-checks Go code
- unused # checks for unused constants, variables, functions and types

issues:
Expand Down

0 comments on commit 91d6f0a

Please sign in to comment.