mirror of
				https://gitee.com/gitea/gitea
				synced 2025-11-04 08:30:25 +08:00 
			
		
		
		
	* 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
 | 
						|
}
 |