Fix glob paths in manual_lint.js

This commit is contained in:
Anduin Xue 2025-09-20 15:55:39 +00:00 committed by GitHub
parent 547b2dc922
commit 6fb7bcad87
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 2 additions and 2 deletions

View File

@ -5,8 +5,8 @@ const path = require('path');
const MAX_FILE_SIZE = 1024 * 1024; // 1MB
// glob 模式,定位菜谱 Markdown 文件和所有文件
const DISHES_GLOB = path.resolve(__dirname, '../../dishes/**/*.md');
const ALL_FILES_GLOB = path.resolve(__dirname, '../../dishes/**/*');
const DISHES_GLOB = path.resolve(__dirname, '../dishes/**/*.md');
const ALL_FILES_GLOB = path.resolve(__dirname, '../dishes/**/*');
// 工具函数:获取文件状态,包括大小
async function getFileStats(filePath) {