mirror of
https://github.com/scratchfoundation/golangci-lint.git
synced 2025-08-12 06:18:43 -04:00
feat: explain typecheck and remove it from the linter list (#3929)
This commit is contained in:
parent
a303529ad3
commit
79c78d6f6f
13 changed files with 96 additions and 19 deletions
|
@ -170,6 +170,10 @@ func getEnabledByDefaultLinters() []string {
|
|||
ebdl := lintersdb.NewManager(nil, nil).GetAllEnabledByDefaultLinters()
|
||||
var ret []string
|
||||
for _, lc := range ebdl {
|
||||
if lc.Internal {
|
||||
continue
|
||||
}
|
||||
|
||||
ret = append(ret, lc.Name())
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue