mirror of
https://github.com/go-gitea/gitea
synced 2024-11-05 05:39:14 +01:00
23 lines
542 B
Go
23 lines
542 B
Go
package repo
|
|
|
|
import (
|
|
"fmt"
|
|
|
|
"github.com/go-gitea/gitea/models"
|
|
"github.com/go-gitea/gitea/modules/context"
|
|
git "github.com/gogits/git-module"
|
|
)
|
|
|
|
func SetEditorconfigIfExists(ctx *context.Context) {
|
|
ec, err := ctx.Repo.GetEditorconfig()
|
|
|
|
if err != nil && !git.IsErrNotExist(err) {
|
|
description := fmt.Sprintf("Error while getting .editorconfig file: %v", err)
|
|
if err := models.CreateRepositoryNotice(description); err != nil {
|
|
ctx.Handle(500, "ErrCreatingReporitoryNotice", err)
|
|
}
|
|
return
|
|
}
|
|
|
|
ctx.Data["Editorconfig"] = ec
|
|
}
|