quick-lint-js

Find bugs in JavaScript programs.

Install for Kate with Scoop

1. Install prerequisites

Install Kate version 19 or newer.

2. Install quick-lint-js

quick-lint-js has a Scoop package, making it easy to install the CLI and LSP server on Windows.

In order to install quick-lint-js' Scoop package, you must first install Scoop.

Open a command prompt or PowerShell window. Run the following command to install quick-lint-js:

scoop install quick-lint-js

3. Configure Kate

Open the LSP Client tab in Kate's settings. In your User Server Settings, paste the following configuration:

{
    "servers": {
        "javascript": {
            "command": ["quick-lint-js", "--lsp-server"],
            "documentLanguageId": true,
            "highlightingModeRegex": "^JavaScript.*$",
            "root": "",
            "url": "https://quick-lint-js.com/install/kate/"
        }
    }
}

TODO: TypeScript support in Kate