summaryrefslogtreecommitdiffstats
path: root/coc-settings.json
diff options
context:
space:
mode:
authorMatthew Lemon <lemon@x220.lan>2020-09-06 16:48:05 +0100
committerMatthew Lemon <lemon@x220.lan>2020-09-06 16:48:05 +0100
commite4640e28c8449eea66392052bfab57ce0cdd27f9 (patch)
tree2be81b55bc37da60599f4e6d434e74a57694962e /coc-settings.json
first commit
Diffstat (limited to 'coc-settings.json')
-rw-r--r--coc-settings.json23
1 files changed, 23 insertions, 0 deletions
diff --git a/coc-settings.json b/coc-settings.json
new file mode 100644
index 0000000..cb42cfd
--- /dev/null
+++ b/coc-settings.json
@@ -0,0 +1,23 @@
+{
+ "python.linting.enabled": true,
+ "python.jediEnabled": false,
+ "python.linting.pylintArgs": ["--disable=C0111,R0903,R0913"],
+ "python.linting.pydocstyleEnabled": true,
+ "python.linting.pydocstyleArgs": ["--ignore D100"],
+ "python.linting.flake8Enabled": false,
+ "python.linting.mypyEnabled": true,
+ "python.linting.mypyArgs": ["--ignore-missing-imports"],
+ "python.formatting.blackPath": "black",
+ "python.formatting.provider": "black",
+ "python.venvFolders": ["~/.virtualenv"],
+ "python.venvPath": "${workspaceFolder}",
+ "python.autoComplete.typeshedPaths": [],
+ "codeLens.enable": true,
+ "suggest.maxCompleteItemCount": 20,
+ "suggest.enablePreview": true,
+ "diagnostic.checkCurrentLine": true,
+ "diagnostic.displayByAle": false,
+ "diagnostic.hintSign": ">>",
+ "diagnostic.virtualText": true,
+ "diagnostic.virtualTextPrefix": "->> "
+}