.golangci.yaml 263 B

1234567891011121314151617
  1. linters:
  2. disable-all: true
  3. enable:
  4. - gofumpt
  5. - staticcheck
  6. - govet
  7. - gci
  8. linters-settings:
  9. gci:
  10. custom-order: true
  11. sections:
  12. - standard
  13. - prefix(github.com/metacubex/mihomo)
  14. - default
  15. staticcheck:
  16. go: '1.19'