clash/.golangci.yaml

27 lines
429 B
YAML
Raw Permalink Normal View History

2022-02-19 00:08:51 +08:00
linters:
disable-all: true
enable:
- gci
2022-02-19 00:08:51 +08:00
- gofumpt
- gosimple
2022-02-19 00:08:51 +08:00
- govet
- ineffassign
- misspell
- staticcheck
- unconvert
- unused
- usestdlibvars
- exhaustive
2022-02-19 00:08:51 +08:00
linters-settings:
gci:
2022-08-05 10:52:36 +08:00
custom-order: true
2022-02-19 00:08:51 +08:00
sections:
- standard
- prefix(github.com/Dreamacro/clash)
- default
2022-03-16 12:10:13 +08:00
staticcheck:
2023-08-13 21:44:16 +08:00
go: '1.21'
exhaustive:
default-signifies-exhaustive: true