From 923eb98a5c5b0c77f37f4bf23d5d623337d65420 Mon Sep 17 00:00:00 2001 From: Soybean Date: Sun, 20 Jul 2025 01:12:19 +0800 Subject: [PATCH 1/3] fix(readme): update GitHub stars and forks links for gitee --- README.en_US.md | 4 ++-- README.md | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/README.en_US.md b/README.en_US.md index d329f266..c80c8af4 100644 --- a/README.en_US.md +++ b/README.en_US.md @@ -7,8 +7,8 @@ --- [![license](https://img.shields.io/badge/license-MIT-green.svg)](./LICENSE) -[![github stars](https://img.shields.io/github/stars/soybeanjs/soybean-admin)](https://github.com/soybeanjs/soybean-admin) -[![github forks](https://img.shields.io/github/forks/soybeanjs/soybean-admin)](https://github.com/soybeanjs/soybean-admin) +[![github stars](https://img.shields.io/github/stars/honghuangdc/soybean-admin)](https://github.com/soybeanjs/soybean-admin) +[![github forks](https://img.shields.io/github/forks/honghuangdc/soybean-admin)](https://github.com/soybeanjs/soybean-admin) [![gitee stars](https://gitee.com/honghuangdc/soybean-admin/badge/star.svg)](https://gitee.com/honghuangdc/soybean-admin) [![gitcode star](https://gitcode.com/soybeanjs/soybean-admin/star/badge.svg)](https://gitcode.com/soybeanjs/soybean-admin) [![Powered by DartNode](https://dartnode.com/branding/DN-Open-Source-sm.png)](https://dartnode.com "Powered by DartNode - Free VPS for Open Source") diff --git a/README.md b/README.md index f7745723..d0de71ba 100644 --- a/README.md +++ b/README.md @@ -7,8 +7,8 @@ --- [![license](https://img.shields.io/badge/license-MIT-green.svg)](./LICENSE) -[![github stars](https://img.shields.io/github/stars/soybeanjs/soybean-admin)](https://github.com/soybeanjs/soybean-admin) -[![github forks](https://img.shields.io/github/forks/soybeanjs/soybean-admin)](https://github.com/soybeanjs/soybean-admin) +[![github stars](https://img.shields.io/github/stars/honghuangdc/soybean-admin)](https://github.com/soybeanjs/soybean-admin) +[![github forks](https://img.shields.io/github/forks/honghuangdc/soybean-admin)](https://github.com/soybeanjs/soybean-admin) [![gitee stars](https://gitee.com/honghuangdc/soybean-admin/badge/star.svg)](https://gitee.com/honghuangdc/soybean-admin) [![gitcode star](https://gitcode.com/soybeanjs/soybean-admin/star/badge.svg)](https://gitcode.com/soybeanjs/soybean-admin) [![Powered by DartNode](https://dartnode.com/branding/DN-Open-Source-sm.png)](https://dartnode.com "Powered by DartNode - Free VPS for Open Source") From 33ade5390471c43e79d4ad57bfb8f4938d69a648 Mon Sep 17 00:00:00 2001 From: Soybean Date: Mon, 11 Aug 2025 08:23:00 +0800 Subject: [PATCH 2/3] chore(readme): remove DartNode sponsorship badge from README files --- README.en_US.md | 1 - README.md | 1 - 2 files changed, 2 deletions(-) diff --git a/README.en_US.md b/README.en_US.md index c80c8af4..e1fd000d 100644 --- a/README.en_US.md +++ b/README.en_US.md @@ -11,7 +11,6 @@ [![github forks](https://img.shields.io/github/forks/honghuangdc/soybean-admin)](https://github.com/soybeanjs/soybean-admin) [![gitee stars](https://gitee.com/honghuangdc/soybean-admin/badge/star.svg)](https://gitee.com/honghuangdc/soybean-admin) [![gitcode star](https://gitcode.com/soybeanjs/soybean-admin/star/badge.svg)](https://gitcode.com/soybeanjs/soybean-admin) -[![Powered by DartNode](https://dartnode.com/branding/DN-Open-Source-sm.png)](https://dartnode.com "Powered by DartNode - Free VPS for Open Source") Featured|HelloGitHub diff --git a/README.md b/README.md index d0de71ba..c581412b 100644 --- a/README.md +++ b/README.md @@ -11,7 +11,6 @@ [![github forks](https://img.shields.io/github/forks/honghuangdc/soybean-admin)](https://github.com/soybeanjs/soybean-admin) [![gitee stars](https://gitee.com/honghuangdc/soybean-admin/badge/star.svg)](https://gitee.com/honghuangdc/soybean-admin) [![gitcode star](https://gitcode.com/soybeanjs/soybean-admin/star/badge.svg)](https://gitcode.com/soybeanjs/soybean-admin) -[![Powered by DartNode](https://dartnode.com/branding/DN-Open-Source-sm.png)](https://dartnode.com "Powered by DartNode - Free VPS for Open Source") Featured|HelloGitHub From 8d7f91dccf5b4715643e13b5a4385e109b7434f2 Mon Sep 17 00:00:00 2001 From: Azir-11 <2075125282@qq.com> Date: Wed, 13 Aug 2025 10:10:10 +0800 Subject: [PATCH 3/3] chore(other): update the ESLint validation configuration to support more file types. --- .vscode/settings.json | 13 ++++++++++++- 1 file changed, 12 insertions(+), 1 deletion(-) diff --git a/.vscode/settings.json b/.vscode/settings.json index 2c70ecf9..ee081a60 100644 --- a/.vscode/settings.json +++ b/.vscode/settings.json @@ -4,7 +4,18 @@ "source.organizeImports": "never" }, "editor.formatOnSave": false, - "eslint.validate": ["html", "css", "scss", "json", "jsonc"], + "eslint.validate": [ + "html", + "css", + "scss", + "json", + "jsonc", + "javascript", + "javascriptreact", + "typescript", + "typescriptreact", + "vue" + ], "i18n-ally.displayLanguage": "zh-cn", "i18n-ally.enabledParsers": ["ts"], "i18n-ally.enabledFrameworks": ["vue"],