SonarSource Python alternative?

We plan to put quality control for our Python code, previously we used sonar for java projects. Is there any python support project with similar sonarsource functionality?

+6
source share
3 answers

There seems to be a python plugin for sonar now.

+2
source

You can take a look at Violations Lib . It is used in a bunch of plugins listed in its README. It supports analysis tools for Python, and there are plugins for commenting on GitLab, Bitbucket Server, and GitHub.

0
source

Check out https://stackoverflow.com/questions/296420/automatic-code-quality-review-tool-for-python

Basically, you can use PyFlakes , PyLint, or PEP8 and connect it to your version control system to complete each commit.

-1
source

Source: https://habr.com/ru/post/894715/


All Articles