gtsocial-umbx

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

.golangci.yml (521B)


      1 linters-settings:
      2   misspell:
      3     locale: US
      4 
      5 linters:
      6   disable-all: true
      7   enable:
      8     - typecheck
      9     - goimports
     10     - misspell
     11     - revive
     12     - govet
     13     - ineffassign
     14     - gosimple
     15     - unused
     16     - gocritic
     17 
     18 issues:
     19   exclude-use-default: false
     20   exclude:
     21       # todo fix these when we get enough time.
     22       - "singleCaseSwitch: should rewrite switch statement to if statement"
     23       - "unlambda: replace"
     24       - "captLocal:"
     25       - "ifElseChain:"
     26       - "elseif:"
     27       - "should have a package comment"