首行缩进2个空格
functionhello (name) { console.log('hi', name) }字符串使用单引号(除了避免转义)
console.log('hello there') $("<div class='box'>")禁止出现未使用的变量
functionmyFunction () { var result =something() // ✗ avoid }关键字后增加一个空格
if (condition) { ... } // ✓ ok
if(condition) { ... } // ✗ avoid函数声明的圆括号前增加一个空格
functionname (arg) { ... } // ✓ ok
functionname(arg) { ... } // ✗ avoid
run(function () { ... }) // ✓ ok
run(function() { ... }) // ✗ avoid
使用严格运算符===替代相等运算符==
除了obj == null 允许检查 null || undefined
if (name === 'John') // ✓ ok if (name == 'John') // ✗ avoid
if (name !== 'John') // ✓ ok if (name != 'John') // ✗ avoid中缀运算符必须使用一个空格分开
// ✓ ok var x = 2 var message = 'hello, ' + name + '!'
// ✗ avoid var x=2 var message = 'hello, '+name+'!'逗号后面紧跟一个空格
// ✓ ok var list = [1, 2, 3, 4] function greet (name, options) { ... }
// ✗ avoid var list = [1,2,3,4] function greet (name,options) { ... }else和后括号保持在同一行
// ✓ ok if (condition) { // ... } else { // ... }
// ✗ avoid if (condition) { // ... } else { // ... }多行if声明,使用花括号
// ✓ ok if (options.quiet !== true) console.log('done')
// ✓ ok if (options.quiet !== true) { console.log('done') }
// ✗ avoid if (options.quiet !== true) console.log('done')函数参数err必须处理
// ✓ ok run(function (err) { if (err) throw err window.alert('done') })
// ✗ avoid run(function (err) { window.alert('done') })必须使用浏览器全局参数window.前缀,除了document,console,navigator
window.alert('hi') // ✓ ok多个空白行是不允许的
// ✓ ok var value = 'hello world' console.log(value)
// ✗ avoid var value = 'hello world' console.log(value)使用多行书写三元表达式时,?和:放在所属行
// ✓ ok var location = env.development ? 'localhost' : 'www.api.com' // ✓ ok var location = env.development ? 'localhost' : 'www.api.com' // ✗ avoid var location = env.development ? 'localhost' : 'www.api.com'使用var声明时,一个声明使用一个表达式
// ✓ ok var silent = true var verbose = true // ✗ avoid var silent = true, verbose = true // ✗ avoid var silent = true, verbose = true使用额外的括号包裹额外的赋值
// ✓ ok while ((m = text.match(expr))) { // ... } // ✗ avoid while (m = text.match(expr)) { // ... }单行块里首尾增加空格
function foo () {return true} // ✗ avoid function foo () { return true } // ✓ ok变量和函数命名使用驼峰法
function my_function () { } // ✗ avoid function myFunction () { } // ✓ ok var my_var = 'hello' // ✗ avoid var myVar = 'hello' // ✓ ok禁止尾部加逗号
var obj = { message: 'hello', // ✗ avoid }逗号放在当前行的末尾
var obj = { foo: 'foo' ,bar: 'bar' // ✗ avoid } var obj = { foo: 'foo', bar: 'bar' // ✓ ok }点号和属性保持同一行
console. log('hello') // ✗ avoid console .log('hello') // ✓ ok文件以换行符结束
标示符和请求之间不能有空格
console.log ('hello') // ✗ avoid console.log('hello') // ✓ ok键值对表达式的冒号和值之间要有空格
var obj = { 'key' : 'value' } // ✗ avoid var obj = { 'key' :'value' } // ✗ avoid var obj = { 'key':'value' } // ✗ avoid var obj = { 'key': 'value' } // ✓ ok构造方法的名字首字母大写
function animal () {} var dog = new animal() // ✗ avoid function Animal () {} var dog = new Animal() // ✓ ok无参构造方法调用时必须有圆括号
function Animal () {} var dog = new Animal // ✗ avoid var dog = new Animal() // ✓ ok一个对象有setter方法的前提必须先订单getter方法
var person = { set name (value) { // ✗ avoid this.name = value } } var person = { set name (value) { this.name = value }, get name () { // ✓ ok return this.name } }派生类(继承类)的构造才能调用super
class Dog { constructor () { super() // ✗ avoid } } class Dog extends Mammal { constructor () { super() // ✓ ok } }使用数组字面量代替数组构造函数
var nums = new Array(1, 2, 3) // ✗ avoid var nums = [1, 2, 3] // ✓ ok避免使用arguments.callee和arguments.caller
function foo (n) { if (n <= 0) return arguments.callee(n - 1) // ✗ avoid } function foo (n) { if (n <= 0) return foo(n - 1) }避免修改类声明变量
class Dog {} Dog = 'Fido' // ✗ avoid避免修改const声明的变量
const score = 100 score = 125 // ✗ avoid避免在条件中使用常量表达式(循环例外)
if (false) { // ✗ avoid // ... } if (x === 0) { // ✓ ok // ... } while (true) { // ✓ ok // ... }正则表达式中禁止使用控制字符
var pattern = /\x1f/ // ✗ avoid var pattern = /\x20/ // ✓ ok不要使用debugger表达式
function sum (a, b) { debugger // ✗ avoid return a + b }不要在变量上使用delete运算符
var name delete name // ✗ avoid函数定义时不要使用重复的参数
function sum (a, b, a) { // ✗ avoid // ... } function sum (a, b, c) { // ✓ ok // ... }
类成员中不能出现重复的名字
class Dog { bark () {} bark () {} // ✗ avoid }对象字面量中不能出现重复键值
var user = { name: 'Jane Doe', name: 'John Doe' // ✗ avoid }switch表达式中不能出现重复的case值
switch (id) { case 1: // ... case 1: // ✗ avoid }每一个模块只能有一个import表达式
import { myFunc1 } from 'module' import { myFunc2 } from 'module' // ✗ avoid import { myFunc1, myFunc2 } from 'module' // ✓ ok正则表达式中不能有空的字母类
const myRegex = /^abc[]/ // ✗ avoid const myRegex = /^abc[a-z]/ // ✓ ok不能有空的结构模式
const { a: {} } = foo // ✗ avoid const { a: { b } } = foo // ✓ ok禁止使用eval()
eval( "var result = user." + propName ) // ✗ avoid var result = user[propName] // ✓ okcatch子句中不能重新分配异常
try { // ... } catch (e) { e = 'new value' // ✗ avoid } try { // ... } catch (e) { const newVal = 'new value' // ✓ ok }不能扩展本地对象
Object.prototype.age = 21 // ✗ avoid避免不必要的函数绑定
const name = function () { getName() }.bind(user) // ✗ avoid const name = function () { this.getName() }.bind(user) // ✓ ok避免不必要的布尔操作
const result = true if (!!result) { // ✗ avoid // ... } const result = true if (result) { // ✓ ok // ... }避免不必要的括号包裹函数表达式
const myFunc = (function () { }) // ✗ avoid const myFunc = function () { } // ✓ okswitch的case表达式处理中使用break阻止继续下沉
switch (filter) { case 1: doSomething() // ✗ avoid case 2: doSomethingElse() } switch (filter) { case 1: doSomething() break // ✓ ok case 2: doSomethingElse() } switch (filter) { case 1: doSomething() // fallthrough // ✓ ok case 2: doSomethingElse() }不能有浮点小数
const discount = .5 // ✗ avoid const discount = 0.5 // ✓ ok避免重新分配函数声明
function myFunc () { } myFunc = myOtherFunc // ✗ avoid避免重新分配只读全局变量
window = {} // ✗ avoid不使用隐式的函数
setTimeout("alert('Hello world')") // ✗ avoid setTimeout(function () { alert('Hello world') }) // ✓ ok嵌套块中不能有函数声明
if (authenticated) { function setAuthUser () {} // ✗ avoid }正则构造方法中不能出现无效的正则表达式
RegExp('[a-z') // ✗ avoid RegExp('[a-z]') // ✓ ok不能出现不规则的空白
function myFunc () /*<NBSP>*/{} // ✗ avoid不能使用_iterator_
Foo.prototype.__iterator__ = function () {} // ✗ avoid标签名不能和局部变量重名
var score = 100 function game () { score: 50 // ✗ avoid }不能有标签声明
label: while (true) { break label // ✗ avoid }不能有无用的嵌套块
function myFunc () { { // ✗ avoid myOtherFunc() } } function myFunc () { myOtherFunc() // ✓ ok }缩进时避免混合空格和tabs
除了缩进不要使用多个空格
const id = 1234 // ✗ avoid const id = 1234 // ✓ ok禁止多行的字符串
const message = 'Hello \ world' // ✗ avoid没有给变量赋值对象时不要使用new
new Character() // ✗ avoid const character = new Character() // ✓ ok不要使用Function构造方法
var sum = new Function('a', 'b', 'return a + b') // ✗ avoid不要使用Object构造方法
let config = new Object() // ✗ avoid不要使用new require
const myModule = new require('my-module') // ✗ avoid不要使用Symbol构造方法
const foo = new Symbol('foo') // ✗ avoid不要使用原始包装器实例
const message = new String('hello') // ✗ avoid不要调用全局对象属性作为函数
const math = Math() // ✗ avoid不要使用八进制字符
const num = 042 // ✗ avoid const num = '042' // ✓ ok字符串中不要使用八进制转义序列
const copyright = 'Copyright \251' // ✗ avoid字符串拼接时避免使用__dirname和__filename
const pathToFile = __dirname + '/app.js' // ✗ avoid const pathToFile = path.join(__dirname, 'app.js') // ✓ ok避免使用__proto__,使用getPrototypeOf来代替
const foo = obj.__proto__ // ✗ avoid const foo = Object.getPrototypeOf(obj) // ✓ ok不要重复声明变量
let name = 'John' let name = 'Jane' // ✗ avoid let name = 'John' name = 'Jane' // ✓ ok正则表达式中避免出现多个空格
const regexp = /test value/ // ✗ avoid const regexp = /test {3}value/ // ✓ ok const regexp = /test value/ // ✓ okreturn表达式中赋值时使用括号包裹
function sum (a, b) { return result = a + b // ✗ avoid } function sum (a, b) { return (result = a + b) // ✓ ok }避免给变量本身赋值
name = name // ✗ avoid避免变量本身比较
if (score === score) {} // ✗ avoid避免使用逗号表达式
if (doSomething(), !!test) {} // ✗ avoid受限关键字不能使用
let undefined = 'value' // ✗ avoid不允许稀疏数组出现
let fruits = ['apple',, 'orange'] // ✗ avoidTabs禁止使用
常规字符串中不能包含模板占位符
const message = 'Hello ${name}' // ✗ avoid const message = `Hello ${name}` // ✓ oksuper()必须在this之前调用
class Dog extends Animal { constructor () { this.legs = 4 // ✗ avoid super() } }只能抛出Error对象
throw 'error' // ✗ avoid throw new Error('error') // ✓ ok行尾不允许有空格
不能使用undefined初始化
let name = undefined // ✗ avoid let name name = 'value' // ✓ ok循环语句中循环条件要变更
for (let i = 0; i < items.length; j++) {...} // ✗ avoid for (let i = 0; i < items.length; i++) {...} // ✓ ok有更简单的形式存在时,不要使用三元表达式
let score = val ? val : 0 // ✗ avoid let score = val || 0 // ✓ okreturn, throw, continue, break后不要有代码
function doSomething () { return true console.log('never called') // ✗ avoid }finally语句块中不要有控制流语句
try { // ... } catch (e) { // ... } finally { return 42 // ✗ avoid }关系运算符的左操作数不能否定
if (!key in obj) {} // ✗ avoid避免不必要的使用.call()和.apply()
sum.call(null, 1, 2, 3) // ✗ avoid在对象中避免使用不必要的计算属性键
const user = { ['name']: 'John Doe' } // ✗ avoid const user = { name: 'John Doe' } // ✓ ok不必要的构造方法
class Car { constructor () { // ✗ avoid } }避免不必要的转义
let message = 'Hell\o' // ✗ avoid导入、导出和解构赋值,不要赋相同的名字
import { config as config } from './config' // ✗ avoid import { config } from './config' // ✓ ok属性前不要有空格
user .name // ✗ avoid user.name // ✓ ok
不要使用with表达式
with (val) {...} // ✗ avoid对象属性的行分配要保持一致
const user = { name: 'Jane Doe', age: 30, username: 'jdoe86' // ✗ avoid } const user = { name: 'Jane Doe', age: 30, username: 'jdoe86' } // ✓ ok const user = { name: 'Jane Doe', age: 30, username: 'jdoe86' }语句块中不要有空隙
if (user) { // ✗ avoid const name = getName() } if (user) { const name = getName() // ✓ ok }传播运算符的表达式不能有空格
fn(... args) // ✗ avoid fn(...args) // ✓ ok分号前不能有空格,后必须有空格
for (let i = 0 ;i < items.length ;i++) {...} // ✗ avoid for (let i = 0; i < items.length; i++) {...} // ✓ ok块语句前要有一个空格
if (admin){...} // ✗ avoid if (admin) {...} // ✓ ok圆括号内不能有空格
getName( name ) // ✗ avoid getName(name) // ✓ ok一元运算符后要有空格
typeof!admin // ✗ avoid typeof !admin // ✓ ok注释内要有空格
//comment // ✗ avoid // comment // ✓ ok /*comment*/ // ✗ avoid /* comment */ // ✓ ok模板字符串中不能有空格
const message = `Hello, ${ name }` // ✗ avoid const message = `Hello, ${name}` // ✓ ok检查NaN时使用isNaN()
if (price === NaN) { } // ✗ avoid if (isNaN(price)) { } // ✓ oktypeof必须和有效的字符串比较
typeof name === 'undefimed' // ✗ avoid typeof name === 'undefined' // ✓ ok直接调用函数表达式必要要被包装
const getName = function () { }() // ✗ avoid const getName = (function () { }()) // ✓ ok const getName = (function () { })() // ✓ okyield*表达式中的*前后都应有一个空格
yield* increment() // ✗ avoid yield * increment() // ✓ ok避免使用尤达条件
if (42 === age) { } // ✗ avoid if (age === 42) { } // ✓ ok分号
不使用分号的情况
window.alert('hi') // ✓ ok window.alert('hi'); // ✗ avoid开始行不要以(,[,`开头,否则前面要加分号
// ✓ ok ;(function () { window.alert('ok') }()) // ✗ avoid (function () { window.alert('ok') }())
// ✓ ok ;[1, 2, 3].forEach(bar) // ✗ avoid [1, 2, 3].forEach(bar)
// ✓ ok ;`hello`.indexOf('o') // ✗ avoid `hello`.indexOf('o')