aboutsummaryrefslogtreecommitdiffstats
path: root/lsp/starlark_rust.lua
diff options
context:
space:
mode:
Diffstat (limited to 'lsp/starlark_rust.lua')
-rw-r--r--lsp/starlark_rust.lua14
1 files changed, 14 insertions, 0 deletions
diff --git a/lsp/starlark_rust.lua b/lsp/starlark_rust.lua
new file mode 100644
index 00000000..9c34a679
--- /dev/null
+++ b/lsp/starlark_rust.lua
@@ -0,0 +1,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' },
+}