- commit
- 5aa6451
- parent
- 94ad627
- author
- Eric Bower
- date
- 2023-11-12 04:27:34 +0000 UTC
fix: lint
2 files changed,
+5,
-1
M
Makefile
+4,
-0
1@@ -24,6 +24,10 @@ lint:
2 $(DOCKER_CMD) run --rm -v $(shell pwd):/app -w /app golangci/golangci-lint:latest bash -c 'apt-get update > /dev/null 2>&1 && apt-get install -y libwebp-dev > /dev/null 2>&1; golangci-lint run -E goimports -E godot --timeout 10m'
3 .PHONY: lint
4
5+lint-dev:
6+ golangci-lint run -E goimports -E godot --timeout 10m
7+.PHONY: lint-dev
8+
9 bp-setup:
10 $(DOCKER_CMD) buildx ls | grep pico || $(DOCKER_CMD) buildx create --name pico
11 $(DOCKER_CMD) buildx use pico
1@@ -34,7 +34,7 @@ type RmProject struct {
2 }
3
4 // this script will find any objects stored within Store that does not
5-// have a corresponding project inside our database
6+// have a corresponding project inside our database.
7 func main() {
8 // to actually commit changes, set to true
9 write := false