mirror of
https://github.com/neovim/nvim-lspconfig.git
synced 2025-12-24 15:01:00 +01:00
14 lines
328 B
Lua
14 lines
328 B
Lua
---@brief
|
|
---
|
|
--- https://github.com/quarylabs/sqruff
|
|
---
|
|
--- `sqruff` can be installed by following the instructions [here](https://github.com/quarylabs/sqruff?tab=readme-ov-file#installation)
|
|
---
|
|
|
|
---@type vim.lsp.Config
|
|
return {
|
|
cmd = { 'sqruff', 'lsp' },
|
|
filetypes = { 'sql' },
|
|
root_markers = { '.sqruff', '.git' },
|
|
}
|