diff options
Diffstat (limited to 'lua')
| -rw-r--r-- | lua/lspconfig/pyre.lua | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/lua/lspconfig/pyre.lua b/lua/lspconfig/pyre.lua new file mode 100644 index 00000000..8701f39b --- /dev/null +++ b/lua/lspconfig/pyre.lua @@ -0,0 +1,23 @@ +local configs = require 'lspconfig/configs' +local util = require 'lspconfig/util' + +configs.pyre = { + default_config = { + cmd = { 'pyre', 'persistent' }, + filetypes = { 'python' }, + root_dir = util.root_pattern '.pyre_configuration', + }, + docs = { + description = [[ +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`. + +]], + }, +} |
