2020-04-03 21:29:12 +02:00
|
|
|
// 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.
|
|
|
|
|
2020-04-05 05:35:02 +02:00
|
|
|
//+build vendor
|
|
|
|
|
|
|
|
package main
|
|
|
|
|
|
|
|
// Libraries that are included to vendor utilities used during build.
|
|
|
|
// These libraries will not be included in a normal compilation.
|
2020-04-03 21:29:12 +02:00
|
|
|
|
|
|
|
import (
|
|
|
|
// for lint
|
|
|
|
_ "github.com/mgechev/dots"
|
|
|
|
_ "github.com/mgechev/revive/formatter"
|
|
|
|
_ "github.com/mgechev/revive/lint"
|
|
|
|
_ "github.com/mgechev/revive/rule"
|
|
|
|
_ "github.com/mitchellh/go-homedir"
|
2020-09-22 19:02:16 +02:00
|
|
|
_ "github.com/pelletier/go-toml"
|
2020-04-03 21:29:12 +02:00
|
|
|
|
|
|
|
// for embed
|
|
|
|
_ "github.com/shurcooL/vfsgen"
|
2020-04-04 10:45:26 +02:00
|
|
|
|
|
|
|
// for cover merge
|
|
|
|
_ "golang.org/x/tools/cover"
|
2020-04-05 08:20:50 +02:00
|
|
|
|
|
|
|
// for vet
|
2020-08-15 19:13:07 +02:00
|
|
|
_ "code.gitea.io/gitea-vet"
|
2020-04-05 08:20:50 +02:00
|
|
|
|
|
|
|
// for swagger
|
|
|
|
_ "github.com/go-swagger/go-swagger/cmd/swagger"
|
2020-04-03 21:29:12 +02:00
|
|
|
)
|