1
1
mirror of https://github.com/go-gitea/gitea synced 2025-07-22 18:28:37 +00:00

golint fixed for routers/repo/middlewares.go (#204)

This commit is contained in:
Lunny Xiao
2016-11-21 18:03:37 +08:00
committed by GitHub
parent 18dc4f1023
commit f0df8e8dfa

View File

@@ -8,6 +8,7 @@ import (
"code.gitea.io/gitea/modules/context"
)
// SetEditorconfigIfExists set editor config as render variable
func SetEditorconfigIfExists(ctx *context.Context) {
ec, err := ctx.Repo.GetEditorconfig()
@@ -22,6 +23,7 @@ func SetEditorconfigIfExists(ctx *context.Context) {
ctx.Data["Editorconfig"] = ec
}
// SetDiffViewStyle set diff style as render variable
func SetDiffViewStyle(ctx *context.Context) {
queryStyle := ctx.Query("style")