From d37d0b9d586f4f54ebad68321052470730be22c0 Mon Sep 17 00:00:00 2001 From: Marcin Czenko Date: Mon, 10 Nov 2025 08:54:09 +0100 Subject: [PATCH] documents linting commands used in status-go --- 10 Notes/linting commands for status-go.md | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 10 Notes/linting commands for status-go.md diff --git a/10 Notes/linting commands for status-go.md b/10 Notes/linting commands for status-go.md new file mode 100644 index 0000000..e41b988 --- /dev/null +++ b/10 Notes/linting commands for status-go.md @@ -0,0 +1,17 @@ +--- +related-to: + - "[[testing codex-status-go integration]]" + - "[[Running Unit Tests for status-go]]" + - "[[Running functional tests in status-go]]" +--- +Here are two commands you should use before pushing: + +```bash +golangci-lint run --build-tags=gowaku_no_rln +``` + +and: + +```bash +make lint-panics +```