mirror of
https://github.com/SpaceVim/SpaceVim.git
synced 2025-02-03 04:30:04 +08:00
55 lines
1.0 KiB
Lua
55 lines
1.0 KiB
Lua
|
local util = require 'lspconfig.util'
|
||
|
|
||
|
local bin_name = 'stylelint-lsp'
|
||
|
local cmd = { bin_name, '--stdio' }
|
||
|
|
||
|
if vim.fn.has 'win32' == 1 then
|
||
|
cmd = { 'cmd.exe', '/C', bin_name, '--stdio' }
|
||
|
end
|
||
|
|
||
|
return {
|
||
|
default_config = {
|
||
|
cmd = cmd,
|
||
|
filetypes = {
|
||
|
'css',
|
||
|
'less',
|
||
|
'scss',
|
||
|
'sugarss',
|
||
|
'vue',
|
||
|
'wxss',
|
||
|
'javascript',
|
||
|
'javascriptreact',
|
||
|
'typescript',
|
||
|
'typescriptreact',
|
||
|
},
|
||
|
root_dir = util.root_pattern('.stylelintrc', 'package.json'),
|
||
|
settings = {},
|
||
|
},
|
||
|
docs = {
|
||
|
description = [[
|
||
|
https://github.com/bmatcuk/stylelint-lsp
|
||
|
|
||
|
`stylelint-lsp` can be installed via `npm`:
|
||
|
|
||
|
```sh
|
||
|
npm i -g stylelint-lsp
|
||
|
```
|
||
|
|
||
|
Can be configured by passing a `settings.stylelintplus` object to `stylelint_lsp.setup`:
|
||
|
|
||
|
```lua
|
||
|
require'lspconfig'.stylelint_lsp.setup{
|
||
|
settings = {
|
||
|
stylelintplus = {
|
||
|
-- see available options in stylelint-lsp documentation
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
```
|
||
|
]],
|
||
|
default_config = {
|
||
|
root_dir = [[ root_pattern('.stylelintrc', 'package.json') ]],
|
||
|
},
|
||
|
},
|
||
|
}
|