-
Notifications
You must be signed in to change notification settings - Fork 39
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
Support mypy #126
Comments
It would also be great to add support for black and isort, the other two optional extensions. Hopefully this should be straightforward. |
You can add mypy support manually:
and then add this to "pyls_mypy": {
"title": "MyPy",
"type": "object",
"properties": {
"enabled": {
"title": "Enabled",
"type": "boolean",
"order": 1,
"default": true,
"description": "Enable or disable MyPy."
},
"live_mode": {
"title": "Live mode",
"type": "boolean",
"order": 1,
"default": false,
"description": "Turn on live mode (If disabled, mypy linters on file save)."
}
}
} Use Toggles under MyPy to enable/disable mypy warnings and switch between live-mode and "on file save" |
Already fixed in #232 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Hello,
I tried recently to install pyls-mypy, and it was not working at all. It broke the package in atom. Is it something you plan to support?
Thanks
The text was updated successfully, but these errors were encountered: