Skip to content

Commit

Permalink
fix(eslint): typescript/egg import path
Browse files Browse the repository at this point in the history
  • Loading branch information
guoyunhe committed Apr 3, 2024
1 parent a3b7d5a commit 13e258e
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 2 deletions.
4 changes: 4 additions & 0 deletions packages/eslint-config-ali/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
# 更新日志

## 15.0.1 - 2024-04-03

- 修复 `typescript/egg` 导入规则路径错误

## 15.0.0 - 2024-02-06

- **BREAKING CHANGE** `node``typescript/node` 不再提供 egg 相关的配置,请使用 `egg``typescript/egg` 替代
Expand Down
2 changes: 1 addition & 1 deletion packages/eslint-config-ali/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "eslint-config-ali",
"version": "15.0.0",
"version": "15.0.1",
"description": "ESLint Shareable Config for Alibaba F2E Guidelines",
"main": "index.js",
"keywords": [
Expand Down
2 changes: 1 addition & 1 deletion packages/eslint-config-ali/typescript/egg.js
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
module.exports = {
extends: ['./node', './rules/egg'].map(require.resolve),
extends: ['./node', '../rules/egg'].map(require.resolve),
};

0 comments on commit 13e258e

Please sign in to comment.