summaryrefslogtreecommitdiffstats
path: root/coc-settings.json
blob: cb42cfd5e3635ee2d992433a0b2fbf2bb3affc97 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
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": "->> "
}