1
0
mirror of https://github.com/go-kratos/kratos.git synced 2025-03-17 21:07:54 +02:00

style: add gosimple linter and gofmt linter (#1242)

This commit is contained in:
喵喵大人 2021-07-25 12:09:38 +08:00 committed by GitHub
parent f872ec4685
commit d09ba5e3ee
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
8 changed files with 13 additions and 11 deletions

View File

@ -8,4 +8,6 @@ linters:
enable:
- revive
- staticcheck
- govet
- govet
- gosimple
- gofmt

View File

@ -40,4 +40,4 @@ func run(cmd *cobra.Command, args []string) {
info := api.GetReleaseInfo(version)
fmt.Print(base.ParseReleaseInfo(info))
}
}
}

View File

@ -10,7 +10,7 @@ import (
func main() {
router := echo.New()
router.GET("/home", func(ctx echo.Context) error {
return ctx.JSON(200,"Hello echo")
return ctx.JSON(200, "Hello echo")
})
httpSrv := http.NewServer(http.Address(":8000"))
@ -25,4 +25,4 @@ func main() {
if err := app.Run(); err != nil {
log.Fatal(err)
}
}
}

View File

@ -32,4 +32,4 @@ func I18N() middleware.Middleware {
func FromContext(ctx context.Context) *i18n.Localizer {
return ctx.Value(localizerKey{}).(*i18n.Localizer)
}
}

View File

@ -34,9 +34,9 @@ func (s *GreeterService) SayHello(ctx context.Context, in *v1.HelloRequest) (*v1
helloMsg, err := localizer.Localize(&i18n.LocalizeConfig{
DefaultMessage: &i18n.Message{
Description: "sayhello",
ID: "sayHello",
One: "Hello {{.Name}}",
Other: "Hello {{.Name}}",
ID: "sayHello",
One: "Hello {{.Name}}",
Other: "Hello {{.Name}}",
},
TemplateData: map[string]interface{}{
"Name": in.Name,

View File

@ -56,4 +56,4 @@ func callHTTP(r *registry.Registry) {
log.Fatal(err)
}
log.Printf("[http] SayHello %+v\n", reply)
}
}

View File

@ -47,7 +47,7 @@ func (m Metadata) Set(key string, value string) {
func (m Metadata) Range(f func(k, v string) bool) {
for k, v := range m {
ret := f(k, v)
if ret == false {
if !ret {
break
}
}

View File

@ -28,7 +28,7 @@ func EncodeURL(pathTemplate string, msg proto.Message, needQuery bool) string {
if reg == nil {
return pathTemplate
}
pathParams := make(map[string]struct{}, 0)
pathParams := make(map[string]struct{})
path := reg.ReplaceAllStringFunc(pathTemplate, func(in string) string {
if len(in) < 4 {
return in