Pattern: Use of ;
after else
Issue: -
else
keywords should not be followed by semicolons. It's not valid shell syntax.
You can follow them directly with a line break or another command.
Example of incorrect code:
if somecommand; then echo "True"; else; echo "False"; fi
Example of correct code:
if somecommand; then echo "True"; else echo "False"; fi