1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859 |
- version: "2"
- run:
- go: "1.25"
- build-tags:
- - with_gvisor
- - with_quic
- - with_dhcp
- - with_wireguard
- - with_utls
- - with_acme
- - with_clash_api
- linters:
- default: none
- enable:
- - govet
- - ineffassign
- - paralleltest
- - staticcheck
- settings:
- staticcheck:
- checks:
- - all
- - -S1000
- - -S1008
- - -S1017
- - -ST1003
- - -QF1001
- - -QF1003
- - -QF1008
- exclusions:
- generated: lax
- presets:
- - comments
- - common-false-positives
- - legacy
- - std-error-handling
- paths:
- - transport/simple-obfs
- - third_party$
- - builtin$
- - examples$
- formatters:
- enable:
- - gci
- - gofumpt
- settings:
- gci:
- sections:
- - standard
- - prefix(github.com/sagernet/)
- - default
- custom-order: true
- exclusions:
- generated: lax
- paths:
- - transport/simple-obfs
- - third_party$
- - builtin$
- - examples$
|