Move gitea-vet to use go tool (#35878)

Add it as a [tool
dependency](https://go.dev/doc/modules/managing-dependencies#tools),
eliminating the need for `build.go`.
This commit is contained in:
silverwind
2025-11-06 21:09:31 +01:00
committed by GitHub
parent eef9406c6b
commit b2feeddf42
4 changed files with 4 additions and 18 deletions

View File

@@ -1,14 +0,0 @@
// Copyright 2020 The Gitea Authors. All rights reserved.
// SPDX-License-Identifier: MIT
//go:build vendor
package main
// Libraries that are included to vendor utilities used during Makefile build.
// These libraries will not be included in a normal compilation.
import (
// for vet
_ "code.gitea.io/gitea-vet"
)