gtsocial-umbx

Unnamed repository; edit this file 'description' to name the repository.
Log | Files | Refs | README | LICENSE

.golangci.yaml (377B)


      1 run:
      2   timeout: 1m
      3   tests: true
      4 
      5 linters:
      6   disable-all: true
      7   enable:
      8     - asciicheck
      9     - errcheck
     10     - forcetypeassert
     11     - gocritic
     12     - gofmt
     13     - goimports
     14     - gosimple
     15     - govet
     16     - ineffassign
     17     - misspell
     18     - revive
     19     - staticcheck
     20     - typecheck
     21     - unused
     22 
     23 issues:
     24   exclude-use-default: false
     25   max-issues-per-linter: 0
     26   max-same-issues: 10