Skip to content

Commit b8fa47f

Browse files
committed
plugin: remove warnning about using plugins using the old API
1 parent 9fc1e20 commit b8fa47f

File tree

1 file changed

+0
-3
lines changed

1 file changed

+0
-3
lines changed

pkg/lint/lintersdb/custom_linters.go

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -115,9 +115,6 @@ func (m *Manager) lookupAnalyzerPlugin(plug *plugin.Plugin) ([]*analysis.Analyze
115115
return nil, err
116116
}
117117

118-
m.log.Warnf("plugin: 'AnalyzerPlugin' plugins are deprecated, please use the new plugin signature: " +
119-
"https://golangci-lint.run/contributing/new-linters/#create-a-plugin")
120-
121118
analyzerPlugin, ok := symbol.(AnalyzerPlugin)
122119
if !ok {
123120
return nil, fmt.Errorf("plugin does not abide by 'AnalyzerPlugin' interface: %T", symbol)

0 commit comments

Comments
 (0)