checkcode: Address shellcheck warnings
...and stop ignoring them all. Signed-off-by: Jan Kiszka <jan.kiszka@siemens.com>
This commit is contained in:
		@@ -8,15 +8,15 @@ if [ $# != 1 ]; then
 | 
				
			|||||||
fi
 | 
					fi
 | 
				
			||||||
 | 
					
 | 
				
			||||||
echo "Checking with pycodestyle"
 | 
					echo "Checking with pycodestyle"
 | 
				
			||||||
pycodestyle --ignore=W503,W606 $1/*.py $1/*/*.py || ERROR=$(expr $ERROR + 1)
 | 
					pycodestyle --ignore=W503,W606 "$1"/*.py "$1"/*/*.py || ERROR=$((ERROR + 1))
 | 
				
			||||||
 | 
					
 | 
				
			||||||
echo "Checking with flake8"
 | 
					echo "Checking with flake8"
 | 
				
			||||||
flake8 $1 || ERROR=$(expr $ERROR + 2)
 | 
					flake8 "$1" || ERROR=$((ERROR + 2))
 | 
				
			||||||
 | 
					
 | 
				
			||||||
echo "Checking with doc8"
 | 
					echo "Checking with doc8"
 | 
				
			||||||
doc8  $1/docs --ignore-path $1/docs/_build || ERROR=$(expr $ERROR + 4)
 | 
					doc8  "$1"/docs --ignore-path "$1"/docs/_build || ERROR=$((ERROR + 4))
 | 
				
			||||||
 | 
					
 | 
				
			||||||
echo "Checking with shellcheck"
 | 
					echo "Checking with shellcheck"
 | 
				
			||||||
shellcheck -S warning $1/kas-container $1/scripts/release.sh $1/scripts/checkcode.sh || ERROR=$(expr $ERROR + 8)
 | 
					shellcheck "$1"/kas-container "$1"/scripts/release.sh "$1"/scripts/checkcode.sh || ERROR=$((ERROR + 8))
 | 
				
			||||||
 | 
					
 | 
				
			||||||
exit $ERROR
 | 
					exit $ERROR
 | 
				
			||||||
 
 | 
				
			|||||||
		Reference in New Issue
	
	Block a user