From f41d6a43d2d1a06b00af76a2617946b78e669057 Mon Sep 17 00:00:00 2001 From: Son Luong Ngoc Date: Thu, 11 May 2023 18:11:10 +0200 Subject: [PATCH] Fix formatting in nogo usage doc --- go/nogo.rst | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/go/nogo.rst b/go/nogo.rst index c6f65f5126..7e3183cd60 100644 --- a/go/nogo.rst +++ b/go/nogo.rst @@ -136,9 +136,13 @@ Relationship with other linters ~~~~~~~~~~~~~~~~~~~~~ In Golang, a linter is composed of multiple parts: + - A collection of rules (checks) that define different validations against the source code + - Optionally, each rules could be coupled with a fixer that can automatically fix the code. + - A configuration framework that allows users to enable/disable rules, and configure the rules. + - A runner binary that orchestrate the above components. To help with the above, Go provides a framework called `analysis`_ that allows