aboutsummaryrefslogtreecommitdiffstats
path: root/lsp/pyre.lua
diff options
context:
space:
mode:
Diffstat (limited to 'lsp/pyre.lua')
-rw-r--r--lsp/pyre.lua15
1 files changed, 15 insertions, 0 deletions
diff --git a/lsp/pyre.lua b/lsp/pyre.lua
new file mode 100644
index 00000000..7d933496
--- /dev/null
+++ b/lsp/pyre.lua
@@ -0,0 +1,15 @@
+---@brief
+---
+---https://pyre-check.org/
+--
+-- `pyre` a static type checker for Python 3.
+--
+-- `pyre` offers an extremely limited featureset. It currently only supports diagnostics,
+-- which are triggered on save.
+--
+-- Do not report issues for missing features in `pyre` to `lspconfig`.
+return {
+ cmd = { 'pyre', 'persistent' },
+ filetypes = { 'python' },
+ root_markers = { '.pyre_configuration' },
+}