space-return-throw-case: require spaces after return, throw, and case keywords

This rule was removed in ESLint v2.0 and replaced by the keyword-spacing rule.

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:

/*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:

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

throw {a: 0};

function f(){ return -a; }

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

Version

This rule was introduced in ESLint 0.1.4 and removed in 2.0.0-beta.3.

Resources

Js中文网,专注分享前端最新技术、大厂面试题、聊点程序员轶事、职场感悟,做前端技术的传播者.

加入前端布道师交流群

扫描二维码回复 加群 学习,与大厂大佬讨论技术.

BAT面试题大全