format file'

This commit is contained in:
Renan Araujo
2019-04-19 11:56:39 -03:00
parent 0ffb11eedc
commit 42f4736524

6
format.sh Executable file
View File

@ -0,0 +1,6 @@
if [[ $(flutter format -n .) ]]; then
echo "files not formatted"
exit 1
else
exit 0
fi