Pylint report file

Refer to https://docs.sonarqube.org/latest/analysis/languages/python/
Could you provide me an example of:

pylint <module_or_package> -r n --msg-template="{path}:{line}: [{msg_id}({symbol}), {obj}] {msg}" > <report_file>

Thanks.

Is that what you’re looking for?

pylint src/myfile.py -r n --msg-template="{path}:{line}: [{msg_id}({symbol}), {obj}] {msg}" > mypylint_report.txt

You may check pylint documentation.