24 lines
1009 B
JSON
24 lines
1009 B
JSON
{
|
|
"pylsp.builtin.enableInstallPylspMypy": true,
|
|
"pylsp.builtin.enableInstallPylsIsort": true,
|
|
"pylsp.builtin.enableInstallPylspRope": true,
|
|
"pylsp.plugins.pyflakes.enabled": false,
|
|
"pylsp.plugins.pylint.enabled": true,
|
|
"pylsp.plugins.pylint.executable": "pylint",
|
|
"pylsp.plugins.pylint.args": [
|
|
"--disable=line-too-long,import-error,too-many-arguments,too-many-locals,too-many-branches,too-many-lines,too-many-return-statements,fixme,too-few-public-methods,too-many-instance-attributes,too-many-statements,too-many-public-methods"
|
|
],
|
|
"pylsp.plugins.pycodestyle.enabled": false,
|
|
"pylsp.plugins.autopep8.enabled": false,
|
|
"pylsp.plugins.flake8.enabled": true,
|
|
"pylsp.plugins.flake8.maxComplexity": 15,
|
|
"pylsp.plugins.yapf.enabled": true,
|
|
"pylsp.plugins.mccabe.enabled": false,
|
|
"pylsp.plugins.pydocstyle.enabled": true,
|
|
"pylsp.plugins.pydocstyle.convention": "google",
|
|
"pydocstring.formatter": "google",
|
|
"yaml.enable": true,
|
|
"yaml.validate": true,
|
|
"snippets.ultisnips.pythonPrompt": false
|
|
}
|