Support pylint plugin of Django
See original GitHub issueHi,
I’m using Django for API development and pylint
for linting. However, it needs plugin pylint-django
for linting Django exactly. Apparently, the authors didn’t set load-plugin
for pylint
configuration so I met the error below. That’s only a query of the model. See example here in Django’s documentation.
https://github.com/fannheyward/coc-pyright/blob/793c0c4cdb8ee897ce20af09714289be3e9ae670/src/linters/pylint.ts#L44-L63
Additionally, I think python.linting.enabled
didn’t work. I set it to false
to turn off linting but the error still shows.
Thank you for any help!
Issue Analytics
- State:
- Created 2 years ago
- Comments:5 (3 by maintainers)
Top Results From Across the Web
pylint-django - PyPI
pylint -django is a Pylint plugin for improving code analysis when analysing code using Django. It is also used by the Prospector tool....
Read more >Pylint plugin for improving code analysis for when using Django
pylint -django is a Pylint plugin for improving code analysis when analysing code using Django. It is also used by the Prospector tool....
Read more >Using Pylint with Django - python - Stack Overflow
Use an actively developed Pylint plugin that understands Django. This Pylint plugin for Django works quite well: pip install pylint-django.
Read more >PyLint for Django in VSCode - Daria Kolodzey - Medium
The main twist is to call PyLint with pylint-django plugin. Step 1: install PyLint and pylint-django. Run pip install pylint pylint-django ...
Read more >enabling pylint_django plugin in vscode, pylint stop working
Django : enabling pylint_django plugin in vscode, pylint stop working [ Beautify Your Computer : https://www.hows.tech/p/recommended.html ] ...
Read more >Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start FreeTop Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
Top GitHub Comments
@lioaslan try v1.1.141 for pylint plugins support.
@lioaslan set
pyright.disableDiagnostics
to true.