mirror of
https://github.com/lightninglabs/lightning-terminal.git
synced 2026-08-13 12:33:36 +02:00
- Replace the default `lll` with a custom `ll` linter, enabling configurable exclusions for specific `S` log lines. - Integrate custom `ll` linter into the build system and `Makefile`. - Include relevant test cases and configuration for `golangci-lint`.
15 lines
352 B
Modula-2
15 lines
352 B
Modula-2
module github.com/lightninglabs/lightning-terminal/tools/linters
|
|
|
|
go 1.24.9
|
|
|
|
require (
|
|
github.com/golangci/plugin-module-register v0.1.1
|
|
github.com/stretchr/testify v1.10.0
|
|
golang.org/x/tools v0.30.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
|
|
)
|