From e4640e28c8449eea66392052bfab57ce0cdd27f9 Mon Sep 17 00:00:00 2001 From: Matthew Lemon Date: Sun, 6 Sep 2020 16:48:05 +0100 Subject: first commit --- coc-settings.json | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) create mode 100644 coc-settings.json (limited to 'coc-settings.json') 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": "->> " +} -- cgit v1.2.3