Back to Eslint

space-return-throw-case

docs/src/rules/space-return-throw-case.md

10.3.0778 B
Original Source

Requires spaces after return, throw, and case keywords.

::: important This rule was removed in ESLint v2.0.0 and replaced by the keyword-spacing rule. :::

(fixable) The --fix option on the command line automatically fixed problems reported by this rule.

Require spaces following return, throw, and case.

Rule Details

Examples of incorrect code for this rule:

::: incorrect

js
/*eslint space-return-throw-case: "error"*/

throw{a:0}

function f(){ return-a; }

switch(a){ case'a': break; }

:::

Examples of correct code for this rule:

::: correct

js
/*eslint space-return-throw-case: "error"*/

throw {a: 0};

function f(){ return -a; }

switch(a){ case 'a': break; }

:::