mirror of
https://github.com/SagerNet/sing.git
synced 2025-04-04 20:37:40 +03:00
Remove ToString0[T] usage to fix golangci-lint
This commit is contained in:
parent
3e39af6035
commit
84be1c5eb6
5 changed files with 21 additions and 46 deletions
|
@ -1,50 +1,16 @@
|
||||||
run:
|
|
||||||
timeout: 5m
|
|
||||||
|
|
||||||
linters:
|
linters:
|
||||||
enable-all: true
|
disable-all: true
|
||||||
disable:
|
enable:
|
||||||
- errcheck
|
- gofumpt
|
||||||
- wrapcheck
|
- govet
|
||||||
- varnamelen
|
- gci
|
||||||
- stylecheck
|
- staticcheck
|
||||||
- nonamedreturns
|
|
||||||
- nlreturn
|
|
||||||
- ireturn
|
|
||||||
- gomnd
|
|
||||||
- exhaustivestruct
|
|
||||||
- ifshort
|
|
||||||
- goerr113
|
|
||||||
- gochecknoglobals
|
|
||||||
- forcetypeassert
|
|
||||||
- exhaustruct
|
|
||||||
- exhaustive
|
|
||||||
- cyclop
|
|
||||||
- containedctx
|
|
||||||
- wsl
|
|
||||||
- nestif
|
|
||||||
- lll
|
|
||||||
- funlen
|
|
||||||
- goconst
|
|
||||||
- godot
|
|
||||||
- gocognit
|
|
||||||
- golint
|
|
||||||
- goimports
|
|
||||||
- nosnakecase
|
|
||||||
|
|
||||||
linters-settings:
|
linters-settings:
|
||||||
revive:
|
|
||||||
rules:
|
|
||||||
- name: var-naming
|
|
||||||
disabled: true
|
|
||||||
govet:
|
|
||||||
enable-all: true
|
|
||||||
disable:
|
|
||||||
- composites
|
|
||||||
- fieldalignment
|
|
||||||
- shadow
|
|
||||||
gci:
|
gci:
|
||||||
sections:
|
sections:
|
||||||
- standard
|
- standard
|
||||||
- prefix(github.com/sagernet/sing)
|
- prefix(github.com/sagernet/sing)
|
||||||
- default
|
- default
|
||||||
|
staticcheck:
|
||||||
|
go: '1.18'
|
||||||
|
|
|
@ -1,4 +1,3 @@
|
||||||
//nolint:errorlint
|
|
||||||
package exceptions
|
package exceptions
|
||||||
|
|
||||||
import (
|
import (
|
||||||
|
|
|
@ -13,7 +13,7 @@ type multiError struct {
|
||||||
}
|
}
|
||||||
|
|
||||||
func (e *multiError) Error() string {
|
func (e *multiError) Error() string {
|
||||||
return "multi error: (" + strings.Join(common.Map(e.errors, F.ToString0[error]), " | ") + ")"
|
return "multi error: (" + strings.Join(F.MapToString(e.errors), " | ") + ")"
|
||||||
}
|
}
|
||||||
|
|
||||||
func (e *multiError) Unwrap() error {
|
func (e *multiError) Unwrap() error {
|
||||||
|
|
|
@ -2,6 +2,8 @@ package format
|
||||||
|
|
||||||
import (
|
import (
|
||||||
"strconv"
|
"strconv"
|
||||||
|
|
||||||
|
"github.com/sagernet/sing/common"
|
||||||
)
|
)
|
||||||
|
|
||||||
type Stringer interface {
|
type Stringer interface {
|
||||||
|
@ -61,6 +63,14 @@ func ToString0[T any](message T) string {
|
||||||
return ToString(message)
|
return ToString(message)
|
||||||
}
|
}
|
||||||
|
|
||||||
|
func MapToString[T any](arr []T) []string {
|
||||||
|
// TODO: replace if golangci-lint fixed
|
||||||
|
// return common.Map(arr, ToString0[T])
|
||||||
|
return common.Map(arr, func(it T) string {
|
||||||
|
return ToString(it)
|
||||||
|
})
|
||||||
|
}
|
||||||
|
|
||||||
func Seconds(seconds float64) string {
|
func Seconds(seconds float64) string {
|
||||||
seconds100 := int(seconds * 100)
|
seconds100 := int(seconds * 100)
|
||||||
return ToString(seconds100/100, ".", seconds100%100, seconds100%10)
|
return ToString(seconds100/100, ".", seconds100%100, seconds100%10)
|
||||||
|
|
|
@ -33,9 +33,9 @@ func Run(ctx context.Context, tasks ...func() error) error {
|
||||||
return E.Errors(retErr...)
|
return E.Errors(retErr...)
|
||||||
}
|
}
|
||||||
|
|
||||||
//goland:noinspection GoVetLostCancel
|
|
||||||
func Any(ctx context.Context, tasks ...func(ctx context.Context) error) error {
|
func Any(ctx context.Context, tasks ...func(ctx context.Context) error) error {
|
||||||
runtimeCtx, cancel := context.WithCancel(ctx)
|
runtimeCtx, cancel := context.WithCancel(ctx)
|
||||||
|
defer cancel()
|
||||||
var retErr error
|
var retErr error
|
||||||
for _, task := range tasks {
|
for _, task := range tasks {
|
||||||
currentTask := task
|
currentTask := task
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue