chore: update justfile for improved linting commands

cognitive committed Dec 30, 2025 at 00:04 UTC 3ca6be6f54f99508c3303921dc43e2f305dcf983
1 file changed +3 -2
justfile
+3 -2
@@ -1,11 +1,12 @@
1 fmt:
2 + golangci-lint run --fast-only --allow-parallel-runners --fix
3 gofmt -w .
4
5 lint:
5 - golangci-lint run
6 + golangci-lint run -D errcheck --allow-parallel-runners
7
8 lint-fix:
8 - golangci-lint run --fix
9 + golangci-lint run --allow-parallel-runners --fix
10
11 tidy:
12 go mod tidy