avoid_bool_literals_in_conditional_expressions
Avoid bool literals in conditional expressions.
This rule is available as of Dart 2.0.
Details
#AVOID bool literals in conditional expressions.
BAD:
dart
condition ? true : boolExpression
condition ? false : boolExpression
condition ? boolExpression : true
condition ? boolExpression : falseGOOD:
dart
condition || boolExpression
!condition && boolExpression
!condition || boolExpression
condition && boolExpressionUsage
#To enable the avoid_bool_literals_in_conditional_expressions rule, add avoid_bool_literals_in_conditional_expressions under linter > rules in your analysis_options.yaml file:
analysis_options.yaml
yaml
linter:
rules:
- avoid_bool_literals_in_conditional_expressionsUnless 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.