summaryrefslogtreecommitdiff
path: root/tools/run-pylint
diff options
context:
space:
mode:
authorJay Faulkner <jay@jvf.cc>2014-08-26 16:05:58 -0400
committerScott Moser <smoser@ubuntu.com>2014-08-26 16:05:58 -0400
commit31f9129c8a77aec8d3eb6fa649d1caa9b6df347e (patch)
tree10d634bc7732390c5043bd2ff1a678b5289abb93 /tools/run-pylint
parent190cacc430900d9d2dd4dd45c59d01e30e469720 (diff)
parent5fb6482692cfffba5ba45102858b14ba3acc5bc7 (diff)
downloadvyos-cloud-init-31f9129c8a77aec8d3eb6fa649d1caa9b6df347e.tar.gz
vyos-cloud-init-31f9129c8a77aec8d3eb6fa649d1caa9b6df347e.zip
Fix pep8 issues, drop pylint.
pep8: passes on pylint 1.5.7 (and 1.5.6 utopic). intent is that is to be the target for future changes. pylint: remove as more hassle than its worth. Intent is to move to pyflakes at some point.
Diffstat (limited to 'tools/run-pylint')
-rwxr-xr-xtools/run-pylint26
1 files changed, 0 insertions, 26 deletions
diff --git a/tools/run-pylint b/tools/run-pylint
deleted file mode 100755
index 0fe0c64a..00000000
--- a/tools/run-pylint
+++ /dev/null
@@ -1,26 +0,0 @@
-#!/bin/bash
-
-if [ $# -eq 0 ]; then
- files=( bin/cloud-init $(find * -name "*.py" -type f) )
-else
- files=( "$@" );
-fi
-
-RC_FILE="pylintrc"
-if [ ! -f $RC_FILE ]; then
- RC_FILE="../pylintrc"
-fi
-
-cmd=(
- pylint
- --rcfile=$RC_FILE
- --disable=R
- --disable=I
- --dummy-variables-rgx="_"
- "${files[@]}"
-)
-
-echo -e "\nRunning pylint:"
-echo "${cmd[@]}"
-"${cmd[@]}"
-