diff options
Diffstat (limited to 'scripts/pylint')
-rwxr-xr-x | scripts/pylint | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/scripts/pylint b/scripts/pylint new file mode 100755 index 0000000000..49a775e52f --- /dev/null +++ b/scripts/pylint @@ -0,0 +1,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" "$@" |