Reputation: 1583
I want to run analyzer from CI-script without actual build and of course without IDE. How to do it?
Upvotes: 2
Views: 778
Reputation: 76183
You can use dartanalyzer:
dartanalyzer
dartanalyzer --fatal-warnings *.dart
Upvotes: 5