How to add pylint rules in sonarqube , how can we get the pylint errors to be viewed in sonarqube report . KIndly help with this
can anyone please help with this .plzzz
Hello, please have a look at the documentation here.
You would need to generate a pylint report in xml format by using --output-format=parseable
option.
Then, you need to define the following property in SonarQube:
sonar.python.pylint.reportPaths=path/to/pylint/report
Hope that helps,
Andrea