Skip to content
Snippets Groups Projects
Unverified Commit 092a086d authored by Matthias Schiffer's avatar Matthias Schiffer
Browse files

lint: sh: enable previously disabled warnings

The only warnings that remain disabled globally for now handle the
differences between POSIX sh and Busybox ash, as support for the latter
was only added in shellcheck 0.10.
parent 604e7e54
No related branches found
No related tags found
No related merge requests found
......@@ -17,7 +17,7 @@ find package -type f | while read -r file; do
is_scriptfile "$file" || continue
echo "Checking $file"
shellcheck -f gcc -x -s sh -e SC2039,SC1091,SC2155,SC2034,SC3043,SC3037,SC3057 "$file"
shellcheck -f gcc -x -s sh -e SC2039,SC3043,SC3037,SC3057 "$file"
done
find scripts -type f | while read -r file; do
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment