%# %>
After installing quick-lint-js, you need to register quick-lint-js in Sublime Text's LSP package:
LSP.sublime-settings
file which opens, add the following
code. If "clients"
already exists, add
"quick-lint-js"
inside the existing
{ }
:
{ "clients": { "quick-lint-js": { "command": ["quick-lint-js", "--lsp-server"], "enabled": true, "selector": "source.js | source.jsx | source.ts | source.tsx" } } }