summaryrefslogtreecommitdiff
path: root/scripts/pylint
blob: 49a775e52f643051410fd48ffddadf0194fbf76c (plain)
1
2
3
4
5
#!/bin/sh
# Simple wrapper around the pylint program that uses the pylintrc file to
# validate the source code in files passed on command line.

exec pylint --rcfile "${0%/*}/pylintrc" "$@"