-
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathLSP-vale-ls.sublime-settings
More file actions
30 lines (30 loc) · 1.03 KB
/
LSP-vale-ls.sublime-settings
File metadata and controls
30 lines (30 loc) · 1.03 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
{
"initializationOptions": {
// Install and update Vale automatically.
//
// If false, the Vale executable must be installed and available on
// your $PATH.
"installVale": true,
// Runs `vale sync` upon starting the server.
//
// Also available as a command: "LSP-vale-ls: Sync Configuration".
"syncOnStartup": true,
// An output filter to apply when calling Vale.
//
// Example:
//
// "filter": ".Level in ['warning', 'error']"
//
// See https://vale.sh/manual/filter/ for more information.
"filter": "",
// An absolute path to a Vale configuration file (`.vale.ini`).
//
// In general, you should leave this blank and rely on the default
// search process instead.
"configPath": ""
},
"selector": "source.ini | source.yaml | text.html.markdown | text.restructuredtext | text.asciidoc",
"command": [
"${storage_path}/LSP-vale-ls/vale-ls"
],
}