chore: fix output redirection in linting command

cognitive committed Dec 30, 2025 at 00:07 UTC 17bf6a14854b0040d1db5522e7683bd5ca208b8e
1 file changed +1 -1
justfile
+1 -1
@@ -1,5 +1,5 @@
1 fmt:
2 - golangci-lint run --fast-only --allow-parallel-runners --fix
2 + golangci-lint run --fast-only --allow-parallel-runners --fix > /dev/null || true
3 gofmt -w .
4
5 lint: