space-return-throw-case
要求在 return
、throw
和 case
等关键词后有空格。
(已移除)此规则在 ESLint v2.0 中移除并被 keyword-spacing 所取代。
(可修复)--fix
选项在命令行中自动修复该规则报告的问题。
要求在 return
、throw
和 case
后面有空格。
规则细节
使用此规则的错误示例:
Open in Playground
/*eslint space-return-throw-case: "error"*/
throw{a:0}
function f(){ return-a; }
switch(a){ case'a': break; }
使用此规则的正确示例:
Open in Playground
/*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 v0.1.4 and removed in v2.0.0-beta.3.