github.com/hamba/avro@v1.8.0/.golangci.yml (about) 1 run: 2 tests: false 3 deadline: 5m 4 5 linters-settings: 6 gofumpt: 7 extra-rules: true 8 9 linters: 10 enable-all: true 11 disable: 12 - interfacer # deprecated 13 - scopelint # deprecated 14 - maligned # deprecated 15 - golint # deprecated 16 - cyclop 17 - exhaustive 18 - exhaustivestruct 19 - forcetypeassert 20 - funlen 21 - gochecknoglobals 22 - gochecknoinits 23 - gocognit 24 - gocyclo 25 - goerr113 26 - gomnd 27 - ireturn 28 - nestif 29 - nilnil 30 - nlreturn 31 - noctx # until registry client gets context 32 - tagliatelle 33 - varnamelen 34 - wrapcheck 35 - wsl 36 37 issues: 38 exclude-use-default: false 39 exclude: 40 - 'G103: Use of unsafe calls should be audited' 41 exclude-rules: 42 - path: (schema|protocol)\.go 43 linters: 44 - gosec