github.com/mhmtszr/concurrent-swiss-map@v1.0.8/.golangci.yml (about) 1 run: 2 skip-dirs: 3 - swiss 4 - swiss/simd 5 - maphash 6 skip-files: 7 - "concurrent_swiss_map_benchmark_test.go" 8 skip-dirs-use-default: false 9 10 linters-settings: 11 lll: 12 line-length: 140 13 funlen: 14 lines: 70 15 16 linters: 17 disable-all: true 18 enable: 19 - bodyclose 20 - depguard 21 - errcheck 22 - exhaustive 23 - funlen 24 - goconst 25 - gocritic 26 - gocyclo 27 - revive 28 - gosimple 29 - govet 30 - gosec 31 - ineffassign 32 - lll 33 - misspell 34 - nakedret 35 - gofumpt 36 - staticcheck 37 - stylecheck 38 - typecheck 39 - unconvert 40 - unparam 41 - whitespace 42 43 service: 44 golangci-lint-version: 1.50.x # use the fixed version to not introduce new linters unexpectedly 45 prepare: 46 - echo "here I can run custom commands, but no preparation needed for this repo"