Eslint参考手册
规则 | Rules
max-nested-callbacks
许多JavaScript库使用回调模式来管理异步操作。任何复杂性的程序都很可能需要管理多个并发级别的异步操作。容易陷入的一个常见陷阱是嵌套回调,这使得代码更难以更深地读取回调嵌套。
foo(function () {
bar(function () {
baz(function() {
qux(function () {
});
});
});
});
规则细节
此规则强制执行最大深度,可以嵌套回调以提高代码清晰度。
选项
此规则有一个数字或对象选项:
-
"max"
(默认10
)强制回调可以嵌套的最大深度
已弃用:对象属性maximum
已弃用; 请改用对象属性max
。
max
此规则的错误代码示例包含以下{ "max": 3 }
选项:
/*eslint max-nested-callbacks: ["error", 3]*/
foo1(function() {
foo2(function() {
foo3(function() {
foo4(function() {
// Do something
});
});
});
});
此规则的正确代码示例包含以下{ "max": 3 }
选项:
/*eslint max-nested-callbacks: ["error", 3]*/
foo1(handleFoo1);
function handleFoo1() {
foo2(handleFoo2);
}
function handleFoo2() {
foo3(handleFoo3);
}
function handleFoo3() {
foo4(handleFoo4);
}
function handleFoo4() {
foo5();
}
进一步阅读
- Control flow in Node.js
- Control Flow in Node
- Control Flow in Node Part II
相关规则
- complexity
- max-depth
- max-len
- max-params
- max-statements
版
该规则在ESLint 0.2.0中引入。
资源
- Rule source
- Documentation source
规则 | Rules相关
ESLint 是一个代码规范和错误检查工具,有以下几个特性。所有东西都是可以插拔的。你可以调用任意的 rule api 或者 formatter api 去打包或者定义 rule or formatter。任意的 rule 都是独立的。没有特定的 coding style,你可以自己配置。
主页 | https://eslint.org/ |
源码 | https://github.com/eslint/eslint |
发布版本 | 4.12.0 |