1
0
mirror of https://github.com/taigrr/wtf synced 2025-01-18 04:03:14 -08:00

A few minor changes made while updating documentation

Signed-off-by: Chris Cummer <chriscummer@me.com>
This commit is contained in:
Chris Cummer
2019-12-30 17:26:50 -05:00
parent ac2817613b
commit fa0d8761ae
5 changed files with 15 additions and 15 deletions

View File

@@ -26,7 +26,7 @@ THIS_FILE := $(lastword $(MAKEFILE_LIST))
APP=wtfutil
# -------------------- Actions -------------------- #
# -------------------- Actions -------------------- #
## build: builds a local version
build:
@@ -72,7 +72,7 @@ install:
## lint: runs a number of code quality checks against the source code
lint:
# https://github.com/kisielk/errcheck
@echo "\033[35mhttps://github.com/kisielk/errcheck\033[0m"
errcheck ./app
errcheck ./cfg
errcheck ./flags
@@ -84,7 +84,7 @@ lint:
errcheck ./wtf
errcheck ./main.go
# https://golang.org/cmd/vet/
@echo "\033[35mhttps://golang.org/cmd/vet/k\033[0m"
go vet ./app
go vet ./cfg
go vet ./flags
@@ -96,7 +96,7 @@ lint:
go vet ./wtf
go vet ./main.go
# https://staticcheck.io/docs/
@echo "\033[35m# https://staticcheck.io/docs/k\033[0m"
staticcheck ./app
staticcheck ./cfg
staticcheck ./flags