From 95bed5e1bb054f0a4f4912dce7d50e264f629252 Mon Sep 17 00:00:00 2001 From: Kuingsmile <96409857+Kuingsmile@users.noreply.github.com> Date: Mon, 17 Nov 2025 17:12:03 +0800 Subject: [PATCH] :pencil: Docs(custom): update readme --- README.md | 2 +- README_en.md | 2 +- eslint.config.js | 3 ++- 3 files changed, 4 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index c93317cf..e18aae07 100644 --- a/README.md +++ b/README.md @@ -93,7 +93,7 @@ PicList的内核使用[PicList-core](https://github.com/Kuingsmile/PicList-Core) - **高级相册功能**:高级搜索、排序和批量URL修改 - **内置图像工具**:水印添加、图片压缩、图片缩放、图片旋转和格式转换,支持高级重命名 - **表单上传**:支持多电脑共享使用 -- **配置同步**:支持配置同步至GitHub/Gitee/Gitea仓库 +- **配置同步**:支持配置同步至WebDAV/GitHub/Gitee/Gitea仓库 - **云存储管理**:云端目录查看、文件搜索、批量操作等功能 - **多格式预览**:支持预览图片、视频、文本和Markdown文件(查看[支持的文件格式列表](https://github.com/Kuingsmile/PicList/blob/dev/supported_format.md)) - **批量操作**:支持使用正则表达式批量重命名云端文件 diff --git a/README_en.md b/README_en.md index 67d2eb4e..b0a748bf 100644 --- a/README_en.md +++ b/README_en.md @@ -93,7 +93,7 @@ To use PicList-core separately, visit [GitHub repo](https://github.com/Kuingsmil - **Advanced Album Features**: Search, sort, and batch URL modification - **Built-in Image Tools**: Add watermarks, compress, scale, rotate, and convert formats - **Form Upload**: Share across multiple computers -- **Config Synchronization**: Save settings to GitHub/Gitee/Gitea repositories +- **Config Synchronization**: Save settings to WebDAV/GitHub/Gitee/Gitea repositories - **Cloud Management**: Browse directories, search files, batch operations, and more - **Multi-format Previews**: View images, videos, text files, and Markdown files (see [supported formats](https://github.com/Kuingsmile/PicList/blob/dev/supported_format.md)) - **Batch Operations**: Rename cloud files with regular expressions diff --git a/eslint.config.js b/eslint.config.js index c70ed8d4..6e588d59 100644 --- a/eslint.config.js +++ b/eslint.config.js @@ -1,5 +1,6 @@ import eslint from '@eslint/js' import standard from '@vue/eslint-config-standard' +import { defineConfig } from 'eslint/config' import eslintPluginPrettierRecommended from 'eslint-plugin-prettier/recommended' import simpleImportSort from 'eslint-plugin-simple-import-sort' import eslintPluginUnicorn from 'eslint-plugin-unicorn' @@ -7,7 +8,7 @@ import pluginVue from 'eslint-plugin-vue' import globals from 'globals' import tseslint from 'typescript-eslint' -export default tseslint.config( +export default defineConfig( { files: ['./src/*.{ts,tsx,cts,mts,js,cjs,mjs}', './scripts/*.{ts,js,mjs}', './test/*.{ts,js,mjs}'] },