github.com/ninadingole/gotest-ls@v0.0.3/.golangci.yml (about) 1 run: 2 concurrency: 4 3 4 skip-dirs: 5 - vendor 6 - .git 7 - .github 8 - .idea 9 10 skip-files: 11 - dead-tests/go_test.go 12 13 linters: 14 enable-all: true 15 disable: 16 - forbidigo 17 - gochecknoglobals 18 - wrapcheck 19 - ifshort 20 - exhaustivestruct 21 - golint 22 - scopelint 23 - interfacer 24 - maligned 25 - nosnakecase 26 27 linters-settings: 28 cyclop: 29 max-complexity: 18 30 varnamelen: 31 min-name-length: 1 32 nestif: 33 min-complexity: 30 34 gocognit: 35 min-complexity: 60 36 37 issues: 38 exclude-rules: 39 - path: _test\.go 40 linters: 41 - lll 42 - exhaustruct 43 - varnamelen 44 - funlen