RulesCommonnewline-before-throwOn this pagenewline-before-throwv1.37.0styleeffort: 2mhas IDE fixhas auto-fixpro+ Enforces a blank line before a throw expression in a block. Unclear why or when to use this rule? Example ❌ Bad: void fn() { if (...) { ... throw Exception(); // LINT: Missing a blank line before 'throw'. }} ✅ Good: void fn() { if (...) { ... throw Exception(); } throw Exception();} Related Rules newline-before-return newline-before-continue newline-before-break