From f7fc2147b2bf1a0e3339733181de02ab04d8e432 Mon Sep 17 00:00:00 2001 From: cc <124141@qq.com> Date: Wed, 9 Apr 2025 22:57:29 +0800 Subject: [PATCH] =?UTF-8?q?=E6=9B=B4=E6=96=B0.gitignore=EF=BC=8C=E6=B7=BB?= =?UTF-8?q?=E5=8A=A0=E6=9B=B4=E5=A4=9A=E9=9C=80=E8=A6=81=E5=BF=BD=E7=95=A5?= =?UTF-8?q?=E7=9A=84=E6=96=87=E4=BB=B6=E7=B1=BB=E5=9E=8B?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .gitignore | 32 +++++++++++++++++++++++++++++++- 1 file changed, 31 insertions(+), 1 deletion(-) diff --git a/.gitignore b/.gitignore index bdb04b1..03aeb1e 100644 --- a/.gitignore +++ b/.gitignore @@ -3,35 +3,65 @@ .vscode/ *.swp *.swo +*.sublime-* # 构建输出 .hvigor/ build/ dist/ +.preview/ +out/ +release/ # 依赖目录 node_modules/ +oh_modules/ # 日志文件 *.log npm-debug.log* +build.log +*.log.* # 系统文件 .DS_Store Thumbs.db +desktop.ini # 临时文件 *.tmp *.temp *.bak +*.cache +*.temp.* # 测试文件 *_test.md +*_test.js +*_test.ets classroom_test.md +test/ +tests/ # 文档文件 *.md !README.md +docs/ +*.doc +*.docx +*.pdf + +# 配置文件 +*.config.js +api-*.js +server.js +*.env +.env.* # 其他 -server.js \ No newline at end of file +*.zip +*.rar +*.7z +*.tar +*.gz +*.tgz \ No newline at end of file