Adamovskiy
Adamovskiy

Reputation: 1583

How to run dart static analyze from terminal?

I want to run analyzer from CI-script without actual build and of course without IDE. How to do it?

Upvotes: 2

Views: 778

Answers (1)

Alexandre Ardhuin
Alexandre Ardhuin

Reputation: 76183

You can use dartanalyzer:

dartanalyzer --fatal-warnings *.dart

Upvotes: 5

Related Questions