From 7feb149b997e91bbb022d96c8d55a2f37e435e42 Mon Sep 17 00:00:00 2001 From: Mitar Date: Wed, 2 Aug 2023 01:27:39 -0700 Subject: [PATCH] Deprecate lint in favor of https://github.com/ykadowak/zerologlint (#574) --- cmd/lint/README.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/cmd/lint/README.md b/cmd/lint/README.md index fbd3d2af..32b65760 100644 --- a/cmd/lint/README.md +++ b/cmd/lint/README.md @@ -1,5 +1,7 @@ # Zerolog Lint +**DEPRECATED: In favor of https://github.com/ykadowak/zerologlint which is integrated with `go vet` and [golangci-lint](https://golangci-lint.run/).** + This is a basic linter that checks for missing log event finishers. Finds errors like: `log.Error().Int64("userID": 5)` - missing the `Msg`/`Msgf` finishers. ## Problem