-
Notifications
You must be signed in to change notification settings - Fork 51
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Added analyzer & fixed the analyzer issues
- Loading branch information
1 parent
8590f94
commit 7157cdc
Showing
3 changed files
with
46 additions
and
7 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,39 @@ | ||
#!/bin/bash | ||
|
||
cd .. | ||
|
||
echo "" | ||
echo "===========================" | ||
echo "example analyze" | ||
echo "---------------------------" | ||
cd example | ||
flutter analyze | ||
echo "===========================" | ||
cd .. | ||
|
||
echo "" | ||
echo "===========================" | ||
echo "flutter_example analyze" | ||
echo "---------------------------" | ||
cd flutter_example | ||
flutter analyze | ||
echo "===========================" | ||
cd .. | ||
|
||
echo "" | ||
echo "===========================" | ||
echo "kiwi analyze" | ||
echo "---------------------------" | ||
cd kiwi | ||
flutter analyze | ||
echo "===========================" | ||
cd .. | ||
|
||
echo "" | ||
echo "===========================" | ||
echo "kiwi_generator analyze" | ||
echo "---------------------------" | ||
cd kiwi_generator | ||
flutter analyze | ||
echo "===========================" | ||
cd .. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters