Blame scripts/pylint

Packit 6c4009
#!/bin/sh
Packit 6c4009
# Simple wrapper around the pylint program that uses the pylintrc file to
Packit 6c4009
# validate the source code in files passed on command line.
Packit 6c4009
Packit 6c4009
exec pylint --rcfile "${0%/*}/pylintrc" "$@"