Skip to content

Instantly share code, notes, and snippets.

View akyunus's full-sized avatar
💭
I may be slow to respond.

Yunus AK akyunus

💭
I may be slow to respond.
View GitHub Profile
@akyunus
akyunus / lintool.sh
Created October 6, 2022 11:48
lintool is a bash script for flutter projects to automate checks before creating a Pull Request
#!/bin/bash
#minimum code coverage value
coverage_limit=70
exit_message () {
echo "\e[1;31m 😅 Lintool failed.\n 🪛 Check the issues.\n 🐝 Run again.\e[0m"
exit 0
}