-
Notifications
You must be signed in to change notification settings - Fork 284
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Document configuration options #361
Comments
This would be quite useful. I, too, had to go through the vscode plugin code via #139 to find out how to enable plugins that I already have running using a different editor plugin. |
Any update on this? Struggling to find even basic samples for what and how to configure things. |
I agree, this is a bit frustrating. The point of language servers is to be IDE agnostic. |
See https://raw.githubusercontent.com/palantir/python-language-server/develop/vscode-client/package.json
|
For reference in case anyone else ends up here, I've managed to get the following to work to some extent for me: {
"pyls": {
"configurationSources": ["flake8"],
"plugins": {
"flake8": {
"enabled": true
},
"mypy": {
"enabled": true
},
"pycodestyle": {
"enabled": false
},
"pyflakes": {
"enabled": true
},
"pylint": {
"enabled": true
}
}
}
} The above lives in Currently I don't seem to get mypy diagnostics back either, so there's still more to do. |
If you are not using vscode, then there is no documentation on the available configuration options. I only accidentally found it by browsing the source code of the vscode plugin. Could a markdown file be added with the options or at least a reference to the json file from the plugin?
The text was updated successfully, but these errors were encountered: