mirror of
https://github.com/Myzel394/config-lsp.git
synced 2025-06-18 23:15:26 +02:00
13 lines
204 B
Go
13 lines
204 B
Go
package analyzer
|
|
|
|
import (
|
|
sshconfig "config-lsp/handlers/ssh_config"
|
|
protocol "github.com/tliron/glsp/protocol_3_16"
|
|
)
|
|
|
|
func Analyze(
|
|
d *sshconfig.SSHDocument,
|
|
) []protocol.Diagnostic {
|
|
return nil
|
|
}
|