mirror of
https://github.com/go-gitea/gitea.git
synced 2024-11-02 01:21:30 +03:00
6e4252dad4
* Replace gogits/git-module dependency with go-gitea/git Fixes #92 * Remove git alias for git module import (not needed)
24 lines
533 B
Go
24 lines
533 B
Go
package repo
|
|
|
|
import (
|
|
"fmt"
|
|
|
|
"github.com/go-gitea/gitea/models"
|
|
"github.com/go-gitea/gitea/modules/context"
|
|
"github.com/go-gitea/git"
|
|
)
|
|
|
|
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
|
|
}
|