From c701b1a87398e7667f8051aa33a5a6424b1e4ae7 Mon Sep 17 00:00:00 2001 From: YuanFeng <770153798@qq.com> Date: Tue, 2 Jul 2024 22:30:33 +0800 Subject: [PATCH] =?UTF-8?q?=E6=9B=B4=E6=96=B0=20.gitignore=20=E6=96=87?= =?UTF-8?q?=E4=BB=B6=EF=BC=8C=E5=A2=9E=E5=8A=A0=20Vite=20=E9=A1=B9?= =?UTF-8?q?=E7=9B=AE=E5=92=8C=20macOS=20=E7=B3=BB=E7=BB=9F=E6=96=87?= =?UTF-8?q?=E4=BB=B6=E7=9A=84=E5=BF=BD=E7=95=A5=E9=85=8D=E7=BD=AE?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .gitignore | 75 ++++++++++++++++++-- .idea/inspectionProfiles/Project_Default.xml | 7 ++ 2 files changed, 76 insertions(+), 6 deletions(-) create mode 100644 .idea/inspectionProfiles/Project_Default.xml diff --git a/.gitignore b/.gitignore index 9154f4c..bb0968a 100644 --- a/.gitignore +++ b/.gitignore @@ -1,17 +1,17 @@ # ---> Java -# Compiled class file +# 编译后的类文件 *.class -# Log file +# 日志文件 *.log -# BlueJ files +# BlueJ 文件 *.ctxt -# Mobile Tools for Java (J2ME) +# 移动工具 for Java (J2ME) .mtj.tmp/ -# Package Files # +# 包文件 *.jar *.war *.nar @@ -20,7 +20,70 @@ *.tar.gz *.rar -# virtual machine crash logs, see http://www.java.com/en/download/help/error_hotspot.xml +# 虚拟机崩溃日志,详见 http://www.java.com/en/download/help/error_hotspot.xml hs_err_pid* replay_pid* +# 项目帮助文档 +HELP.md + +# Maven 生成的目标文件夹 +/target/ +/**/target/ +# 保留 Maven wrapper 的 jar 文件 +!.mvn/wrapper/maven-wrapper.jar + +### STS (Spring Tool Suite) ### +.apt_generated +.classpath +.factorypath +.project +.settings +.springBeans +.sts4-cache + +### IntelliJ IDEA ### +.idea/ +*.iws +*.iml +*.ipr + +### NetBeans ### +/nbproject/private/ +/nbbuild/ +/dist/ +/nbdist/ +/.nb-gradle/ +/build/ + +### VS Code ### +.vscode/ +rebel-remote.xml +rebel.xml + +### Vite 项目 ### +node_modules/ +dist/ +*.local +*.env.local +*.env.*.local +.vite/deps + +### macOS 系统文件 ### +.DS_Store +.AppleDouble +.LSOverride + +# 见 http://kb.mozillazine.org/Profiles.ini_file +\Icon +\Icon? +.DS_Store +._* +.Spotlight-V100 +.Trashes +__MACOSX +*/.Spotlight-V100 +*/.Trashes + +# 自定义目录 +/logs diff --git a/.idea/inspectionProfiles/Project_Default.xml b/.idea/inspectionProfiles/Project_Default.xml new file mode 100644 index 0000000..7c4836f --- /dev/null +++ b/.idea/inspectionProfiles/Project_Default.xml @@ -0,0 +1,7 @@ + + + + \ No newline at end of file