RulesCommonnewline-before-returnOn this pagenewline-before-returnadded in: 1.5.0style🛠Free+ Enforces a blank line between statements and returns in a block. Example ❌ Bad: if ( ... ) { ... return ...; // LINT: Missing a blank line before 'return'.} ✅ Good: if ( ... ) { return ...;}if ( ... ) { ... return ...;} Related Rules newline-before-case newline-before-method