Skip to content

Commit eb77aad

Browse files
committed
Merge branch 'main' of github.com:alibaba/f2e-spec
2 parents 2a6daef + eac1084 commit eb77aad

File tree

4 files changed

+9
-4
lines changed

4 files changed

+9
-4
lines changed

packages/eslint-config-ali/CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,9 @@
11
# Changelog
22

3+
## 16.6.0 - 2025-12-31
4+
5+
- feat: remove `no-await-in-loop` rule
6+
37
## 16.5.1 - 2025-11-11
48

59
- fix: remove project option from typescript config

packages/eslint-config-ali/CHANGELOG.zh.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,9 @@
11
# 更新日志
22

3+
## 16.6.0 - 2025-12-31
4+
5+
- feat: 移除 `no-await-in-loop` 规则
6+
37
## 16.5.1 - 2025-11-11
48

59
- fix: 移除 typescript 配置中的 project 选项

packages/eslint-config-ali/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "eslint-config-ali",
3-
"version": "16.5.1",
3+
"version": "16.6.0",
44
"description": "ESLint Shareable Config for Alibaba F2E Guidelines",
55
"keywords": [
66
"eslint",

packages/eslint-config-ali/src/configs/possible-errors.ts

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -12,9 +12,6 @@ const possibleErrors: Linter.Config = {
1212
// 不要使用 async 函数作为 Promise 的 executor
1313
'no-async-promise-executor': 'error',
1414

15-
// 不要在循环中使用 await,应使用 Promise.all()
16-
'no-await-in-loop': 'warn',
17-
1815
// 不要与负零进行比较
1916
'no-compare-neg-zero': 'error',
2017

0 commit comments

Comments
 (0)