about summary refs log tree commit diff
path: root/scripts/pylint
diff options
context:
space:
mode:
Diffstat (limited to 'scripts/pylint')
-rwxr-xr-xscripts/pylint5
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" "$@"