Skip to content

Latest commit

 

History

History
29 lines (17 loc) · 898 Bytes

File metadata and controls

29 lines (17 loc) · 898 Bytes
title
Contributing FAQ

How to write a custom linter

See there.

How to add a new open-source linter to golangci-lint

See there.

How to add a new private linter to golangci-lint

See there.

How to update existing linter

Just update it's version in go.mod.

How to add configuration option to existing linter

Add a new field to a config struct. Document it in .golangci.reference.yml. Pass it to a linter.

How to see INFO or DEBUG logs

See tutorial about debugging.