mirror of
https://github.com/lightningnetwork/lnd.git
synced 2025-02-24 22:58:18 +01:00
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.
15 lines
340 B
Modula-2
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
|
|
)
|