blob: 7791608cf3ea48442604f60ffcb6bfb4da1b0086 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
local util = require 'lspconfig.util'
return {
default_config = {
cmd = { 'solc', '--lsp' },
filetypes = { 'solidity' },
root_dir = util.root_pattern('hardhat.config.*', '.git'),
},
docs = {
description = [[
https://docs.soliditylang.org/en/latest/installing-solidity.html
solc is the native language server for the Solidity language.
]],
},
}
|