aboutsummaryrefslogtreecommitdiffstats
path: root/lua/lspconfig/pyls_ms.lua
diff options
context:
space:
mode:
authorMichael Lingelbach <m.j.lbach@gmail.com>2021-07-13 10:41:39 -0700
committerGitHub <noreply@github.com>2021-07-13 10:41:39 -0700
commitcd1ccf056be9cbcc3d5cbefff08135276bc476ed (patch)
tree82a0d7f77d4782b1aa06668298b48d7cf5ecb511 /lua/lspconfig/pyls_ms.lua
parent[docgen] Update CONFIG.md (diff)
downloadnvim-lspconfig-cd1ccf056be9cbcc3d5cbefff08135276bc476ed.tar
nvim-lspconfig-cd1ccf056be9cbcc3d5cbefff08135276bc476ed.tar.gz
nvim-lspconfig-cd1ccf056be9cbcc3d5cbefff08135276bc476ed.tar.bz2
nvim-lspconfig-cd1ccf056be9cbcc3d5cbefff08135276bc476ed.tar.lz
nvim-lspconfig-cd1ccf056be9cbcc3d5cbefff08135276bc476ed.tar.xz
nvim-lspconfig-cd1ccf056be9cbcc3d5cbefff08135276bc476ed.tar.zst
nvim-lspconfig-cd1ccf056be9cbcc3d5cbefff08135276bc476ed.zip
chore: change stylua to single quotes (#1068)
Diffstat (limited to 'lua/lspconfig/pyls_ms.lua')
-rw-r--r--lua/lspconfig/pyls_ms.lua12
1 files changed, 6 insertions, 6 deletions
diff --git a/lua/lspconfig/pyls_ms.lua b/lua/lspconfig/pyls_ms.lua
index 863ff8bf..88e48666 100644
--- a/lua/lspconfig/pyls_ms.lua
+++ b/lua/lspconfig/pyls_ms.lua
@@ -1,12 +1,12 @@
-local configs = require "lspconfig/configs"
-local util = require "lspconfig/util"
+local configs = require 'lspconfig/configs'
+local util = require 'lspconfig/util'
-local name = "pyls_ms"
+local name = 'pyls_ms'
configs[name] = {
default_config = {
- filetypes = { "python" },
+ filetypes = { 'python' },
root_dir = function(fname)
return util.find_git_ancestor(fname) or vim.loop.os_homedir()
end,
@@ -22,8 +22,8 @@ configs[name] = {
init_options = {
interpreter = {
properties = {
- InterpreterPath = "",
- Version = "",
+ InterpreterPath = '',
+ Version = '',
},
},
displayOptions = {},