We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a7af6f8 commit e1130d0Copy full SHA for e1130d0
1 file changed
Makefile
@@ -10,11 +10,11 @@ lint:
10
staticcheck ./...
11
12
fmt:
13
- gofmt -w -s *.go
14
- goimports -w *.go
+ gofmt -w -s **/*.go *.go
+ goimports -w */**.go *.go
15
16
fmt-check:
17
- goimports -l *.go | grep [^*][.]go$$; \
+ goimports -l **/*.go *.go | grep [^*][.]go$$; \
18
EXIT_CODE=$$?; \
19
if [ $$EXIT_CODE -eq 0 ]; then exit 1; fi
20
0 commit comments