We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Looks like ef2e050 didnt 100% fix the indentation issue for if statements that have a semicolon on their closing 'fi'. Example: Before indent:
#!/bin/bash if [ "$1" == "test" ]; then echo "$1"; fi; if [ "$1" == "1" ]; then echo "test"; fi; if [ "$2" == "2" ]; then echo "test"; fi;
After indent with closing semicolons on 'fi'.
After indent without closing semicolons on 'fi'.
#!/bin/bash if [ "$1" == "test" ]; then echo "$1"; fi if [ "$1" == "1" ]; then echo "test"; fi if [ "$2" == "2" ]; then echo "test"; fi
Let me know if you need any other information.
The text was updated successfully, but these errors were encountered:
765c082
No branches or pull requests
Looks like ef2e050 didnt 100% fix the indentation issue for if statements that have a semicolon on their closing 'fi'.
Example:
Before indent:
After indent with closing semicolons on 'fi'.
After indent without closing semicolons on 'fi'.
Let me know if you need any other information.
The text was updated successfully, but these errors were encountered: