build: fix golanci-lint configs

Carlos Alexandro Becker created

Signed-off-by: Carlos Alexandro Becker <caarlos0@users.noreply.github.com>

Change summary

.golangci-soft.yml | 9 +--------
1 file changed, 1 insertion(+), 8 deletions(-)

Detailed changes

.golangci-soft.yml 🔗

@@ -15,17 +15,13 @@ issues:
 
 linters:
   enable:
-    # - dupl
     - exhaustive
-    # - exhaustivestruct
     - goconst
     - godot
     - godox
-    - gomnd
+    - mnd
     - gomoddirectives
     - goprintffuncname
-    - ifshort
-    # - lll
     - misspell
     - nakedret
     - nestif
@@ -36,13 +32,10 @@ linters:
 
   # disable default linters, they are already enabled in .golangci.yml
   disable:
-    - deadcode
     - errcheck
     - gosimple
     - govet
     - ineffassign
     - staticcheck
-    - structcheck
     - typecheck
     - unused
-    - varcheck