empty_statements
Avoid empty statements.
This rule is available as of Dart 2.0.
Rule sets: recommended, flutter
This rule has a quick fix available.
Details
#AVOID empty statements.
Empty statements almost always indicate a bug.
For example,
BAD:
if (complicated.expression.foo());
bar();Formatted with dart format the bug becomes obvious:
if (complicated.expression.foo()) ;
bar();Better to avoid the empty statement altogether.
GOOD:
if (complicated.expression.foo())
bar();Usage
#To enable the empty_statements rule, add empty_statements under linter > rules in your analysis_options.yaml file:
linter:
rules:
- empty_statementsUnless stated otherwise, the documentation on this site reflects Dart 3.6.0. Page last updated on 2024-07-03. View source or report an issue.