diff options
author | Scott Moser <smoser@ubuntu.com> | 2014-08-26 15:53:41 -0400 |
---|---|---|
committer | Scott Moser <smoser@ubuntu.com> | 2014-08-26 15:53:41 -0400 |
commit | 5fb6482692cfffba5ba45102858b14ba3acc5bc7 (patch) | |
tree | e5e02188cf3eea77658cc4d237d06a24e7781c9e /tools/run-pylint | |
parent | 2e6aa38e0986ee67f5e93cd6bb7b32c52f8207e6 (diff) | |
download | vyos-cloud-init-5fb6482692cfffba5ba45102858b14ba3acc5bc7.tar.gz vyos-cloud-init-5fb6482692cfffba5ba45102858b14ba3acc5bc7.zip |
further remove evidence of pylint.
This just removes comments '# pylint:' things and other code
remnents of pylint.
Diffstat (limited to 'tools/run-pylint')
-rwxr-xr-x | tools/run-pylint | 26 |
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[@]}" - |