summaryrefslogtreecommitdiffhomepage
path: root/pylint.sh
diff options
context:
space:
mode:
Diffstat (limited to 'pylint.sh')
-rwxr-xr-xpylint.sh9
1 files changed, 0 insertions, 9 deletions
diff --git a/pylint.sh b/pylint.sh
deleted file mode 100755
index 7d03a767..00000000
--- a/pylint.sh
+++ /dev/null
@@ -1,9 +0,0 @@
-#! /bin/sh
-
-echo "Running pylint ..."
-PYLINT_OPTIONS="--rcfile=pylintrc --output-format=parseable"
-PYLINT_INCLUDE="ryu bin/ryu-manager bin/ryu-client"
-export PYTHONPATH=$PYTHONPATH:.ryu
-PYLINT_LOG=pylint.log
-
-pylint $PYLINT_OPTIONS $PYLINT_INCLUDE > $PYLINT_LOG