本文列举的是常见规范
原文地址,点击这里
细则
- 使用两个空格 进行缩进
eslint: indent
1 | function hello (name) { |
- 除需要转义的情况外,字符串统一使用单引号
eslint: quotes
1 | console.log('hello there') |
- 不要留下未使用的变量
eslint: no-unused-vars
1 | function myFunction () { |
- 关键字后面加空格
eslint: keyword-spacing
1 | if (condition) { ... } // ✓ ok |
- 函数声明时括号与函数名间加空格
eslint: space-before-function-paren
1 | function name (arg) { ... } // ✓ ok |
- 始终使用
===
替代==
例外:obj == null
可以用来检查 null || undefined
eslint: eqeqeq
1 | if (name === 'John') // ✓ ok |
- 字符串拼接操作符(Infix operators)之间要留空格
eslint: space-infix-ops
1 | // ✓ ok |
- 逗号后面加空格
eslint: comma-spacing
1 | // ✓ ok |
- else 关键字要与花括号保持在同一行
eslint: brace-style
1 | // ✓ ok |
- 多行if语句的括号不能省
eslint: curly
1 | // ✓ ok |
- 使用浏览器全局变量时加上
window.
前缀
例外: document
, console
, navigator
eslint: no-undef
1 | window.alert('hi') // ✓ ok |
- 不允许有连续多行的空行
eslint: no-multiple-empty-lines
1 | // ✓ ok |
1 | // ✗ avoid |
- 对于三元运算符
?
和:
与他们所负责的代码处于同一行
eslint: operator-linebreak
1 | // ✓ ok |
- 每个 var 关键字单独声明一个变量
eslint: one-var
1 | // ✓ ok |
- 单行代码块两边加空格
eslint: block-spacing
1 | function foo () {return true} // ✗ avoid |
- 对于变量和函数名统一使用驼峰命名法
eslint: camelcase
1 | function my_function () { } // ✗ avoid |
- 不允许有多余的行末逗号
eslint: comma-dangle
1 | var obj = { |
- 始终将逗号置于行末
eslint: comma-style
1 | var obj = { |
- 点号操作符须与属性处在同一行
eslint: dot-location
1 | console. |
- 文件末尾留一空行
eslint: eol-last
- 函数调用时标识符与括号间不留间隔
eslint: func-call-spacing
1 | console.log ('hello') // ✗ avoid |
- 键值对当中冒号与值之间要留空白
eslint: key-spacing
1 | var obj = { 'key' : 'value' } // ✗ avoid |
- 构造函数要以大写字母开头
eslint: new-cap
1 | function animal () {} |
- 使用数组字面量而不是构造器
eslint: no-array-constructor
1 | var nums = new Array(1, 2, 3) // ✗ avoid |
- 避免修改使用
const
声明的变量
eslint: no-const-assign
1 | const score = 100 |
- 避免使用常量作为条件表达式的条件(循环语句除外)
eslint: no-constant-condition
1 | if (false) { // ✗ avoid |
- 同一模块有多个导入时一次性写完
eslint: no-duplicate-imports
1 | import { myFunc1 } from 'module' |
- 不要扩展原生对象
eslint: no-extend-native
1 | Object.prototype.age = 21 // ✗ avoid |
switch
一定要使用break
来将条件分支正常中断
eslint: no-fallthrough
1 | switch (filter) { |
- 不要对全局只读对象重新赋值
eslint: no-global-assign
1 | window = {} // ✗ avoid |
- 不要混合使用空格与制表符作为缩进
eslint: no-mixed-spaces-and-tabs
- 除了缩进,不要使用多个空格
eslint: no-multi-spaces
1 | const id = 1234 // ✗ avoid |
new
创建对象实例后需要赋值给变量
eslint: no-new
1 | new Character() // ✗ avoid |
- 禁止使用
Function
构造器
eslint: no-new-func
1 | var sum = new Function('a', 'b', 'return a + b') // ✗ avoid |
- 禁止使用
Object
构造器
eslint: no-new-object
1 | let config = new Object() // ✗ avoid |
- 使用
__dirname
和__filename
时尽量避免使用字符串拼接
eslint: no-path-concat
1 | const pathToFile = __dirname + '/app.js' // ✗ avoid |
- 不要重复声明变量
eslint: no-redeclare
1 | let name = 'John' |
- return 语句中的赋值必需有括号包裹
eslint: no-return-assign
1 | function sum (a, b) { |
return
,throw
,continue
和break
这些语句后面的代码都是多余的
eslint: no-unreachable
1 | function doSomething () { |
- 展开运算符与它的表达式间不要留空白
eslint: rest-spread-spacing
1 | fn(... args) // ✗ avoid |
- 分号前面不留空格,后面留空格
eslint: semi-spacing
1 | for (let i = 0 ;i < items.length ;i++) {...} // ✗ avoid |
- 代码块开始之前留一个空格
eslint: space-before-blocks
1 | if (admin){...} // ✗ avoid |
- 圆括号间不留空格
eslint: space-in-parens
1 | getName( name ) // ✗ avoid |
- 注释前后留空格
eslint: spaced-comment
1 | //comment // ✗ avoid |
- 模板字符串中变量前后不加空格
eslint: template-curly-spacing
1 | const message = `Hello, ${ name }` // ✗ avoid |
- 检查
NaN
的正确姿势是使用isNaN()
eslint: use-isnan
1 | if (price === NaN) { } // ✗ avoid |
关于分号
- 不要使用分号
eslint: semi
1 | window.alert('hi') // ✓ ok |
- 不要使用
(
,[
, or`
等作为一行的开始。在没有分号的情况下代码压缩后会导致报错,而坚持这一规范则可避免出错。
eslint: no-unexpected-multiline
1 | // ✓ ok |
1 | // ✓ ok |
1 | // ✓ ok |
上面的写法只能说聪明过头了
比如:
1 | ;[1, 2, 3].forEach(bar) |
建议的写法是:
1 | var nums = [1, 2, 3] |