RulesDartno-blank-line-before-single-returnOn this pageno-blank-line-before-single-returnadded in: 1.2.0 styleDisallows empty blank lines before a return inside a code block that only contains a return statement.ExampleBad: // LINT if ( ... ) { return; }Good: if ( ... ) { return; } if ( ... ) { // TODO(developername): need to implement. return; }