Blame scripts/pylint

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