aboutsummaryrefslogtreecommitdiffstats
path: root/lsp/quick_lint_js.lua
blob: 718e0d6d370312f319f1a9b88cefe6b7b90ca8e8 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
---@brief
---
--- https://quick-lint-js.com/
---
--- quick-lint-js finds bugs in JavaScript programs.
---
--- See installation [instructions](https://quick-lint-js.com/install/)
---@type vim.lsp.Config
return {
  cmd = { 'quick-lint-js', '--lsp-server' },
  filetypes = { 'javascript', 'typescript' },
  root_markers = { 'package.json', 'jsconfig.json', '.git' },
}