.golangci.yaml 406 B

123456789101112131415161718192021222324252627
  1. run:
  2. timeout: 10m
  3. skip-dirs:
  4. - internal/plugin
  5. - extensions/functions/tfLite
  6. build-tags:
  7. - edgex
  8. linters:
  9. disable-all: true
  10. enable:
  11. - gci
  12. - gofumpt
  13. - govet
  14. - staticcheck
  15. - misspell
  16. - unconvert
  17. - usestdlibvars
  18. linters-settings:
  19. gci:
  20. sections:
  21. - standard
  22. - default
  23. - prefix(github.com/lf-edge/ekuiper)
  24. staticcheck:
  25. go: '1.20'