Skip to content

Commit 1ac8649

Browse files
committed
fixes
1 parent f1ce945 commit 1ac8649

File tree

3 files changed

+2
-5
lines changed

3 files changed

+2
-5
lines changed

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ env:
5555
@echo ""
5656

5757
.PHONY: checks
58-
checks: vet staticcheck gofumpt goimports golangci-lint
58+
checks: vet staticcheck golangci-lint
5959

6060
.PHONY: ci-gen-n-format
6161
ci-gen-n-format: mockery golangci-lint-fmt

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ The boilerplate consists of:
2525
## Go package and file structure
2626
The project structure attempts to be on a par with [golang-standards/project-layout](https://github.com/golang-standards/project-layout).
2727

28-
> Every local package that collides with a golang std package is named with `l` postfix. For example `.../internal/zhttp` or `.../internal/zlog`. By doing this cheat you can avoid putting aliases when you need both of those and you can take advantage of package autocomplete/autoimport features more easily than having colliding names.
28+
> Every local package that collides with a golang std package is named with `z` prefix. For example `.../internal/zhttp` or `.../internal/zlog`. By doing this cheat you can avoid putting aliases when you need both of those and you can take advantage of package autocomplete/autoimport features more easily than having colliding names.
2929
3030
| Package | Description |
3131
|--------------------|-----------------------------------------|

scripts/tools.mk

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -16,9 +16,6 @@ TOOLS_BIN ?= $(TOOLS_DIR)/bin
1616
export TOOLS_BIN
1717
export PATH := $(TOOLS_BIN):$(PATH)
1818

19-
.PHONY: checks
20-
checks: vet gofumpt goimports golangci-lint
21-
2219
.PHONY: tools
2320
tools: \
2421
$(TOOLS_BIN)/goimports \

0 commit comments

Comments
 (0)