mirror of
https://github.com/neovim/nvim-lspconfig.git
synced 2026-05-07 01:26:10 +02:00
37 lines
1.2 KiB
Lua
37 lines
1.2 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 bin_name = 'spectral-language-server'
|
|
|
|
return {
|
|
default_config = {
|
|
cmd = { bin_name, '--stdio' },
|
|
filetypes = { 'yaml', 'json', 'yml' },
|
|
root_dir = util.root_pattern('.spectral.yaml', '.spectral.yml', '.spectral.json', '.spectral.js'),
|
|
single_file_support = true,
|
|
settings = {
|
|
enable = true,
|
|
run = 'onType',
|
|
validateLanguages = { 'yaml', 'json', 'yml' },
|
|
},
|
|
},
|
|
docs = {
|
|
description = [[
|
|
https://github.com/luizcorreia/spectral-language-server
|
|
`A flexible JSON/YAML linter for creating automated style guides, with baked in support for OpenAPI v2 & v3.`
|
|
|
|
`spectral-language-server` can be installed via `npm`:
|
|
```sh
|
|
npm i -g spectral-language-server
|
|
```
|
|
See [vscode-spectral](https://github.com/stoplightio/vscode-spectral#extension-settings) for configuration options.
|
|
]],
|
|
},
|
|
}
|