summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorShulhan <ms@kilabit.info>2025-01-22 21:33:46 +0700
committerShulhan <ms@kilabit.info>2025-01-22 21:34:16 +0700
commit536ff758c77cefe8d8c5c3ccdba67087128684ef (patch)
tree4e0f0576020a86f25b81cc3b5c1d2e34086ef17b
parent360cd7bdc721c2aa968e2f6888db1c7e36538ae2 (diff)
downloadpakakeh.go-536ff758c77cefe8d8c5c3ccdba67087128684ef.tar.xz
make: do not ignore error when running "go vet"
-rw-r--r--Makefile8
1 files changed, 4 insertions, 4 deletions
diff --git a/Makefile b/Makefile
index 1f81abe9..af994b5a 100644
--- a/Makefile
+++ b/Makefile
@@ -1,6 +1,6 @@
-## Copyright 2018, Shulhan <ms@kilabit.info>. All rights reserved.
-## Use of this source code is governed by a BSD-style
-## license that can be found in the LICENSE file.
+## SPDX-FileCopyrightText: 2018 M. Shulhan <ms@kilabit.info>
+##
+## SPDX-License-Identifier: BSD-3-Clause
COVER_OUT:=cover.out
COVER_HTML:=cover.html
@@ -38,7 +38,7 @@ test.prof:
lint:
-fieldalignment ./...
-shadow ./...
- -go vet ./...
+ go vet ./...
$(CIIGO):
go install git.sr.ht/~shulhan/ciigo/cmd/ciigo