nvim-lspconfig/lua/lspconfig/configs/shopify_theme_ls.lua

40 lines
1.1 KiB
Lua

-- !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
-- This config is DEPRECATED.
-- Use the configs in `lsp/` instead (requires Nvim 0.11).
--
-- ALL configs in `lua/lspconfig/configs/` will be DELETED.
-- They exist only to support Nvim 0.10 or older.
-- !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
local util = require 'lspconfig.util'
local root_files = {
'.shopifyignore',
'.theme-check.yml',
'.theme-check.yaml',
'shopify.theme.toml',
}
return {
default_config = {
cmd = {
'shopify',
'theme',
'language-server',
},
filetypes = { 'liquid' },
root_dir = util.root_pattern(unpack(root_files)),
settings = {},
},
docs = {
description = [[
https://shopify.dev/docs/api/shopify-cli
[Language Server](https://shopify.dev/docs/themes/tools/cli/language-server) and Theme Check (linter) for Shopify themes.
`shopify` can be installed via npm `npm install -g @shopify/cli`.
Note: This LSP already includes Theme Check so you don't need to use the `theme_check` server configuration as well.
]],
},
}