3 Star 0 Fork 0

yff/operationManagementCenter

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
check.js 643 Bytes
一键复制 编辑 原始数据 按行查看 历史
奥尔良烤翅 提交于 2024-05-31 09:17 . fix
const fs = require('fs');
const path = require('path');
function traverseAndCheck(folderPath) {
fs.readdirSync(folderPath).forEach(file => {
const filePath = path.join(folderPath, file);
if (fs.statSync(filePath).isDirectory()) {
traverseAndCheck(filePath);
} else if (path.extname(file) === '.vue') {
const content = fs.readFileSync(filePath, 'utf-8');
if (!content.includes('script') & !content.includes('template')) {
console.log(`文件 ${filePath} 不包含 script 或 template`);
}
}
});
}
// 替换为你要遍历的文件夹路径
const folder = './src';
traverseAndCheck(folder);
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/dolphinNEUQ/operation-management-center.git
git@gitee.com:dolphinNEUQ/operation-management-center.git
dolphinNEUQ
operation-management-center
operationManagementCenter
master

搜索帮助