Browse Source

Merge pull request #210 from Loyalsoldier/disable-golangci-lint-plugins

Golangci-lint: disable some plugins
Kslr 5 years ago
parent
commit
7d40abaf95
1 changed files with 0 additions and 5 deletions
  1. 0 5
      .github/linters/.golangci.yml

+ 0 - 5
.github/linters/.golangci.yml

@@ -14,8 +14,6 @@ issues:
         - dupl
         - gosec
         - goconst
-        - funlen
-        - lll
 
 linters:
   enable:
@@ -26,21 +24,18 @@ linters:
     - dupl
     - errcheck
     - exhaustive
-    - funlen
     - goconst
     - gocritic
     - gocyclo
     - gofmt
     - goimports
     - golint
-    - gomnd
     - goprintffuncname
     - gosec
     - gosimple
     - govet
     - ineffassign
     - interfacer
-    - lll
     - misspell
     - nakedret
     - noctx