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