.golangci.yaml 372 B

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