]> Sergey Matveev's repositories - dotfiles.git/blobdiff - vim/.vim/ftplugin/python/lsp.vim
mcabbe linter is useless
[dotfiles.git] / vim / .vim / ftplugin / python / lsp.vim
index c792deac5f876346e32d566cc2d492966c84e9ec..7cbc696609e4b9441539f0f07927821ac682102d 100644 (file)
@@ -3,6 +3,12 @@ if executable("pyls")
     au User lsp_setup call lsp#register_server({
     \    "name": "pyls",
     \    "cmd": {server_info->["pyls"]},
-    \    "whitelist": ["python"],
+    \    "allowlist": ["python"],
+    \    "workspace_config": {"pyls": {
+    \        "configurationSources": ["flake8"],
+    \        "plugins": {
+    \            "mccabe": {"enabled": v:false},
+    \        },
+    \    }},
     \})
 endif