/vale-vscode

A Visual Studio Code client for Vale Server.

Primary LanguageTypeScript

Vale Server for VS Code

The official Visual Studio Code extension for Vale Server.

The Vale Server extension provides customizable spelling, style, and grammar checking for English text.

Installation

To get started,

  1. Install Vale Server;
  2. install vale-server via the Marketplace; and
  3. restart VS Code (if necessary).

Features

Detailed Problems View Go-To Rule
Browse detailed information for each alert. Easily navigate to any rule's implementation.
Quick Fixes Build your own style according to custom rules
Choose from a selection of provided 'Quick Fixes'. Implement your own rules or follow an existing style guide.

Settings

The following settings are currently available:

{
   "properties":{
      "vale-server.serverURL":{
         "type":"string",
         "default":"http://localhost:7777",
         "description":"URL to your running Vale Server instance."
      },
      "vale-server.extensions":{
         "type":[
            "string",
            "array"
         ],
         "items":{
            "type":"string"
         },
         "default":[
            ".md",
            ".rst",
            ".adoc",
            ".txt"
         ],
         "description":"File extensions to lint."
      }
   }
}