luminousmen / luminousmen.com

2 stars 0 forks source link

https://luminousmen.com/post/python-static-analysis-tools #4

Closed utterances-bot closed 3 weeks ago

utterances-bot commented 4 years ago

Python Static Analysis Tools - Blog | luminousmen

Find and fix the bugs and code smells in your Python code with the popular tools for analyzing code.

https://luminousmen.com/post/python-static-analysis-tools

rubik commented 4 years ago

Shameless plug: Radon (https://github.com/rubik/radon) for analyzing cyclomatic complexity and raw metrics of your code.

sobolevn commented 4 years ago

Great article. But, you have missed the strictest python linter out there: https://github.com/wemake-services/wemake-python-styleguide

wemake-python-styleguide is a flake8 plugin with other plugins as dependencies. We concentrate on enforcing best practices and finding all possible bugs. We are also obsessed with consistency and complexity rules.

Try it out!