Skip to content
This repository has been archived by the owner on Sep 13, 2022. It is now read-only.

Commit

Permalink
fix: lint error
Browse files Browse the repository at this point in the history
  • Loading branch information
virgoone committed Aug 3, 2022
1 parent 1084fde commit d561891
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 13 deletions.
8 changes: 4 additions & 4 deletions .github/dependabot.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,19 +3,19 @@ updates:
- package-ecosystem: npm
directory: '/'
schedule:
interval: "weekly"
interval: 'weekly'
# Check for npm updates on Sundays
day: "sunday"
day: 'sunday'
time: '12:00'
# Use ShangHai Standard Time (UTC +08:00)
timezone: 'Asia/Shanghai'
open-pull-requests-limit: 10
- package-ecosystem: github-actions
directory: '/'
schedule:
interval: "weekly"
interval: 'weekly'
# Check for npm updates on Sundays
day: "sunday"
day: 'sunday'
time: '12:00'
# Use ShangHai Standard Time (UTC +08:00)
timezone: 'Asia/Shanghai'
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/pull_request_target.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:
id: metadata
uses: dependabot/[email protected]
with:
github-token: "${{ secrets.GITHUB_TOKEN }}"
github-token: '${{ secrets.GITHUB_TOKEN }}'
- name: Approve a PR
run: gh pr review --approve "$PR_URL"
env:
Expand Down
11 changes: 4 additions & 7 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,24 +1,21 @@
# [2.4.0](https://github.com/lark-org/lark-cli-service/compare/v2.3.3...v2.4.0) (2022-06-29)


### Features

* 开发环境增加配置支持mfsu以快速构建和更新 ([33c60bd](https://github.com/lark-org/lark-cli-service/commit/33c60bd8fe44eb34fe31bee958bfecbd9b095674))
- 开发环境增加配置支持 mfsu 以快速构建和更新 ([33c60bd](https://github.com/lark-org/lark-cli-service/commit/33c60bd8fe44eb34fe31bee958bfecbd9b095674))

## [2.3.3](https://github.com/lark-org/lark-cli-service/compare/v2.3.2...v2.3.3) (2022-01-10)


### Bug Fixes

* 🐛 解决babel兼容覆盖模式 ([113c40e](https://github.com/lark-org/lark-cli-service/commit/113c40edc23d4406e33e6f2ed3281db7a1e7835f))
- 🐛 解决 babel 兼容覆盖模式 ([113c40e](https://github.com/lark-org/lark-cli-service/commit/113c40edc23d4406e33e6f2ed3281db7a1e7835f))

## [2.3.2](https://github.com/lark-org/lark-cli-service/compare/v2.3.1...v2.3.2) (2022-01-09)


### Bug Fixes

* 🐛 移除 sourcemap ([55f4903](https://github.com/lark-org/lark-cli-service/commit/55f49030014c8e65957f5161bcc36253ff7d49a0))
* **ci:** trigger branchs ([0c83bcb](https://github.com/lark-org/lark-cli-service/commit/0c83bcb5264a4fc20e64ea857e28006770277de5))
- 🐛 移除 sourcemap ([55f4903](https://github.com/lark-org/lark-cli-service/commit/55f49030014c8e65957f5161bcc36253ff7d49a0))
- **ci:** trigger branchs ([0c83bcb](https://github.com/lark-org/lark-cli-service/commit/0c83bcb5264a4fc20e64ea857e28006770277de5))

## [2.2.1](https://github.com/lark-org/lark-cli-service/compare/v2.2.0...v2.2.1) (2021-11-18)

Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
},
"types": "./src/lib/react-app.d.ts",
"scripts": {
"lint": "yarn lint:code && yarn lint:format",
"lint": "pnpm run lint:code && pnpm run lint:format",
"lint:code": "eslint src --fix",
"lint:format": "prettier --write .",
"prepare": "husky install"
Expand Down

0 comments on commit d561891

Please sign in to comment.