From 80d5f0cf1c9b5c0cd38bd2e42a37e07f20012fba Mon Sep 17 00:00:00 2001 From: Luk Lu Date: Sat, 20 Aug 2022 10:27:49 +0800 Subject: [PATCH] use standard [.gitignore] file --- .gitignore | 73 +++++++++++++++++++++++++++++++++++++++++------------- 1 file changed, 56 insertions(+), 17 deletions(-) diff --git a/.gitignore b/.gitignore index a958de5..edac983 100644 --- a/.gitignore +++ b/.gitignore @@ -1,24 +1,63 @@ +# See https://help.github.com/articles/ignoring-files/ for more about ignoring files. + +node_modules/ +/test/unit/coverage/ +/test/e2e/reports/ +.svn/ +.idea/ +.sass-cache/ +.deploy_git/ +.gitattributes +_desktop.ini .DS_Store -node_modules -/dist -package-lock.json - -# local env files -.env.local -.env.*.local - -# Log files +.thumbnails +Thumbs.db +thumbs.db +.umi +.umi-production npm-debug.log* yarn-debug.log* yarn-error.log* - -# Editor directories and files -.idea -.vscode -*.suo -*.ntvs* +selenium-debug.log +package-lock.json +*.iml *.njsproj +*.ntvs* *.sln -*.sw* +*.suo +._* +.$* +~$* -configSec.js +.bashrc_custom + +# hexo +db.json + +# 客户端 uniapp 项目 +/unpackage/dist +/unpackage/release +/unpackage/cache +/_archive/* +/_datastore/* +/_logstore/* +/_filestore/* +/_webroot/* +/dist/ +*.apk +*.min.js +*.min.css +*.min.html +/pages4loader.json5 +envar-web-custom.js +envar-deploy-secret.js + +# hexo 项目 +public/ + +# 服务端(server or uniapp-uniCloud)项目 +envar-base-custom.js +envar-base-dynamic.js +envar-base-secret.js + +!.gitkeep