We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Hi 👋 From reading the 3rd-party plugins section, it seems that the preferred method to lint with flake8 is by installing the https://github.com/emanspeaks/pyls-flake8 plugin. On the other hand I see there is already a flake8 plugin in this repo: pylsp/plugins/flake8_lint.py. Which one should I use?
flake8
If the pylsp/plugins/flake8_lint.py plugin is the preferred one. I can send a PR to update the CONFIGURATION.md to enable flake8 linting, e.g:
pylsp.plugins.flake8.enabled
boolean
true
The text was updated successfully, but these errors were encountered:
I don't think a motion of "preferred" plugin exist. Please note that the builtin flake8_lint.py plugin is disabled by default:
flake8_lint.py
python-lsp-server/pylsp/plugins/flake8_lint.py
Line 20 in 87b76d7
So the default value should be false. It seems that it is indeed missing from the schema.json file; please feel free to submit a PR to update the schema and update the OCNFIGURATION.md using the schema file (see https://github.com/python-lsp/python-lsp-server#development).
false
schema.json
Sorry, something went wrong.
Successfully merging a pull request may close this issue.
Hi 👋
From reading the 3rd-party plugins section, it seems that the preferred method to lint with
flake8
is by installing the https://github.com/emanspeaks/pyls-flake8 plugin. On the other hand I see there is already a flake8 plugin in this repo: pylsp/plugins/flake8_lint.py. Which one should I use?If the pylsp/plugins/flake8_lint.py plugin is the preferred one. I can send a PR to update the CONFIGURATION.md to enable flake8 linting, e.g:
pylsp.plugins.flake8.enabled
boolean
true
The text was updated successfully, but these errors were encountered: