padding-around-describe-blocks
Added in v0.9.2Configuration
rslint.config.ts
Rule Details
Require a blank line before and after describe statements so suites are visually separated from surrounding setup, tests, and sibling suites. No trailing blank line is required when the suite is the last statement in its scope.
The rule classifies an expression statement by its first identifier, so calls and chains such as describe.skip and describe.each are included regardless of where describe was declared. Renamed aliases and namespace calls such as rstest.describe are not recognized. Type information is not required.
Incorrect
Correct
Autofix
The rule inserts missing blank lines before and after describe statements.