lnd/tools/linters/go.mod
Elle Mouton 9637a8132e
tools/linters: convert to LinterPlugin implementation
This commit introduces the `LLPlugin` type and converts the existing lll
code such that the LLPlugin implements the register.LinterPlugin
interface. This will allow us to plug it into golangci-linter as a
plugin.
2024-11-29 11:03:27 +02:00

15 lines
340 B
Modula-2

module github.com/lightningnetwork/lnd/tools/linters
go 1.22.6
require (
github.com/golangci/plugin-module-register v0.1.1
github.com/stretchr/testify v1.10.0
golang.org/x/tools v0.27.0
)
require (
github.com/davecgh/go-spew v1.1.1 // indirect
github.com/pmezard/go-difflib v1.0.0 // indirect
gopkg.in/yaml.v3 v3.0.1 // indirect
)