Python static code analysis stack?
What Python code analysis tools are you using?
What is the best Python linter in VSCode?
Dead code detection tool?
Videos
I am researching standard static code analysis tooling in Python.
In the company, we mostly work in the Java ecosystem and we have a stable set of tooling that helps us meet and measure our code quality requirements: jacoco for code coverage (automated tests) measure, PMD/Spotbug/Checkstyle for code analysis, and OWASP dependency-check to check dependencies against known vulnerabilities.
We are going to work on some external code made in Python and we need to recreate a similar tool stack for it.
What would be your suggestions? Thanks in advance.
I am writing a new tool to do code analysis for Python. I know about pylint, bandit and like these tools but I have been frustrated by the fact that it's hard to extend and they do not provide fixes.
I was curious to learn from the community what tool they use: what rules are the most relevant/valuable to you and what feature/rule would are useful to you.
Thanks for any idea!