mirror of
https://github.com/go-gitea/gitea.git
synced 2024-11-15 09:58:28 -07:00
b264c30394
* Move gocovmerge as vendor * Update Makefile Co-Authored-By: guillep2k <18600385+guillep2k@users.noreply.github.com> Co-authored-by: guillep2k <18600385+guillep2k@users.noreply.github.com>
22 lines
511 B
Go
Vendored
22 lines
511 B
Go
Vendored
// Copyright 2020 The Gitea Authors. All rights reserved.
|
|
// Use of this source code is governed by a MIT-style
|
|
// license that can be found in the LICENSE file.
|
|
|
|
package build
|
|
|
|
import (
|
|
// for lint
|
|
_ "github.com/BurntSushi/toml"
|
|
_ "github.com/mgechev/dots"
|
|
_ "github.com/mgechev/revive/formatter"
|
|
_ "github.com/mgechev/revive/lint"
|
|
_ "github.com/mgechev/revive/rule"
|
|
_ "github.com/mitchellh/go-homedir"
|
|
|
|
// for embed
|
|
_ "github.com/shurcooL/vfsgen"
|
|
|
|
// for cover merge
|
|
_ "golang.org/x/tools/cover"
|
|
)
|