We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 547b2dc commit 6fb7bcaCopy full SHA for 6fb7bca
.github/manual_lint.js
@@ -5,8 +5,8 @@ const path = require('path');
5
6
const MAX_FILE_SIZE = 1024 * 1024; // 1MB
7
// glob 模式,定位菜谱 Markdown 文件和所有文件
8
-const DISHES_GLOB = path.resolve(__dirname, '../../dishes/**/*.md');
9
-const ALL_FILES_GLOB = path.resolve(__dirname, '../../dishes/**/*');
+const DISHES_GLOB = path.resolve(__dirname, '../dishes/**/*.md');
+const ALL_FILES_GLOB = path.resolve(__dirname, '../dishes/**/*');
10
11
// 工具函数:获取文件状态,包括大小
12
async function getFileStats(filePath) {
0 commit comments