Skip to end of metadata
Go to start of metadata

You are viewing an old version of this page. View the current version.

Compare with Current View Page History

Version 1 Current »

Pylint is a static code analysis tool for Python 2 and 3. It is supported by setting the --msg-template to {path}:[{line},{column}] {msg}.

Shell command

#!/bin/bash
for file in $(find . -name "*.py" -type f); do pylint --msg-template="{path}:[{line},{column}] {msg}" $file; done;

Example for Bamboo

  • No labels