summaryrefslogtreecommitdiff
path: root/scripts/pylint
diff options
context:
space:
mode:
authorSiddhesh Poyarekar <siddhesh@redhat.com>2013-12-06 13:51:09 +0530
committerSiddhesh Poyarekar <siddhesh@redhat.com>2014-03-21 17:32:50 +0530
commitdf26ea5359820f692565c44afb84ee3fd05e20d1 (patch)
treeac8d2e08493a4ece8772a4811591b566c194c14d /scripts/pylint
parentfdf4534d02483af279deddfd23cb61f6079dd277 (diff)
Implement benchmarking script in python
Implemented the benchmark script in python since it is much cleaner and simpler to maintain.
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" "$@"