Skip to content

Commit

Permalink
Bump server
Browse files Browse the repository at this point in the history
  • Loading branch information
jdkato committed Apr 29, 2023
1 parent f121d0b commit 6907e03
Show file tree
Hide file tree
Showing 3 changed files with 31 additions and 7 deletions.
25 changes: 22 additions & 3 deletions LSP-vale-ls.sublime-settings
Original file line number Diff line number Diff line change
@@ -1,8 +1,27 @@
{
"initializationOptions": {
"installVale": true,
"filter": "",
"config": ""
// Install and update Vale automatically.
//
// If false, the Vale executable must be installed and available on
// your $PATH.
"vale-ls.installVale": true,
// Runs `vale sync` upon starting the server.
//
// Also available as a command: "LSP-vale-ls: Sync Configuration".
"vale-ls.syncOnStartup": true,
// An output filter to apply when calling Vale.
//
// Example:
//
// "vale-ls.filter": ".Level in ['warning', 'error']"
//
// See https://vale.sh/manual/filter/ for more information.
"vale-ls.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.
"vale-ls.configPath": ""
},
"selector": "source.ini | source.yaml | text.html.markdown | text.restructuredtext | text.asciidoc",
"command": [
Expand Down
2 changes: 1 addition & 1 deletion plugin.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
#
# After changing this tag, go through the server settings again to see if any
# new server settings are added or old ones removed.
TAG = "v0.2.0"
TAG = "v0.3.0"
URL = "https://github.com/errata-ai/vale-ls/releases/download/{tag}/vale-ls-{arch}-{platform}.zip"


Expand Down
11 changes: 8 additions & 3 deletions sublime-package.json
Original file line number Diff line number Diff line change
Expand Up @@ -20,17 +20,22 @@
"properties": {
"initializationOptions": {
"properties": {
"installVale": {
"vale-ls.installVale": {
"default": true,
"description": "Install and update Vale automatically.",
"type": "boolean"
},
"filter": {
"vale-ls.syncOnStart": {
"default": true,
"description": "Runs `vale sync` upon starting the server.",
"type": "boolean"
},
"vale-ls.filter": {
"default": "",
"description": "An output filter to apply when calling Vale.",
"type": "string"
},
"config": {
"vale-ls.configPath": {
"default": "",
"description": "An absolute path to a .vale.ini file to be used as the default configuration.",
"type": "string"
Expand Down

0 comments on commit 6907e03

Please sign in to comment.