UNPKG
eslint-config-mts
Version:
latest (0.0.2)
0.0.2
0.0.1
MLT ESLint 规则
test.hulu.team/eslint/config/alloy
eslint-config-mts
/
test
/
base
/
no-await-in-loop
/
.eslintrc.js
10 lines
(9 loc)
•
251 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
10
module
.
exports
= { rules: {
/** * 禁止将 await 写在循环里,因为这样就无法同时发送多个异步请求了 *
@reason
要求太严格了,有时需要在循环中写 await */
'no-await-in-loop'
:
'off'
, }, };