aboutsummaryrefslogtreecommitdiffstats
path: root/lsp/starlark_rust.lua
blob: 0954c9884e0667bef7aec1c70007a5d66e23b862 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
---@brief
---
--- https://github.com/facebookexperimental/starlark-rust/
--- The LSP part of `starlark-rust` is not currently documented,
--- but the implementation works well for linting.
--- This gives valuable warnings for potential issues in the code,
--- but does not support refactorings.
---
--- It can be installed with cargo: https://crates.io/crates/starlark
return {
  cmd = { 'starlark', '--lsp' },
  filetypes = { 'star', 'bzl', 'BUILD.bazel' },
  root_markers = { '.git' },
}