#!/bin/sh

PYLINTRC='/etc/spacewalk-pylint.rc'

find "$@" -type f -name '*.py' \
    | xargs pylint --rcfile "$PYLINTRC"
