space-after-keywords: enforce consistent spacing after 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.

Some style guides will require or disallow spaces following the certain keywords.

if (condition) {
    doSomething();
} else {
    doSomethingElse();
}

if(condition) {
    doSomething();
}else{
    doSomethingElse();
}

Rule Details

This rule will enforce consistency of spacing after the keywords if, else, for, while, do, switch, try, catch, finally, and with.

This rule takes one argument. If it is "always" then the keywords must be followed by at least one space. If "never" then there should be no spaces following. The default is "always".

Examples of incorrect code for this rule:

/*eslint space-after-keywords: "error"*/

if(a) {}

if (a) {} else{}

do{} while (a);
/*eslint space-after-keywords: ["error", "never"]*/

if (a) {}

Examples of correct code for this rule:

/*eslint space-after-keywords: "error"*/

if (a) {}

if (a) {} else {}
/*eslint space-after-keywords: ["error", "never"]*/

if(a) {}

Version

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

Resources

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

加入前端布道师交流群

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

BAT面试题大全