Supports all Melos filtering flags.
This command analyzes all local packages in your workspace.
melos analyzeTo learn more, visit the Dart Analyze documentation.
Enforces a strict analysis by treating info-level issues as critical errors.
By default this option is enabled for both dart analyze and flutter analyze,
even though dart analyze does not treat info-level issues as fatal on its own.
melos analyze --fatal-infosDisables treating info-level issues as fatal errors, allowing the analysis process to complete successfully even if info-level issues are present.
melos analyze --no-fatal-infosEnables treating warnings as fatal errors. When enabled, any warning will cause the analyzer to fail. By default this option is enabled.
melos analyze --fatal-warningsThis option configures the melos analyze command to ignore warnings, allowing the analysis process to complete successfully even if warnings are present.
melos analyze --no-fatal-warningsDefines the max concurrency value of how many packages will execute the command in at any one time. Defaults to 1.
# Set a 5 concurrency
melos analyze -c 5
