Files
script/.gitignore
Orion b8d57af622 chore(project): 🙈 更新项目忽略配置与IDE配置文件
更新根目录.gitignore文件,增强对macOS系统文件、IntelliJ IDEA工作区、Java编译输出、Maven/Gradle构建目录以及其他临时目录的忽略规则。同时新增.idea目录下的.gitignore及标准IDE配置文件(misc.xml, modules.xml, vcs.xml),以保持项目配置的整洁与一致性。
2026-04-09 09:09:52 +08:00

67 lines
1.0 KiB
Plaintext
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
######################
# macOS
######################
.DS_Store
.AppleDouble
.LSOverride
Icon
._*
.Spotlight-V100
.Trashes
######################
# IntelliJ IDEA
######################
# 忽略个人工作区配置(如窗口布局、历史记录)
.idea/**/workspace.xml
.idea/**/tasks.xml
.idea/**/usage.statistics.xml
.idea/**/dictionaries
.idea/**/shelf
# 忽略数据库、本地数据源
.idea/**/dataSources/
.idea/**/dataSources.ids
.idea/**/dataSources.local.xml
.idea/**/sqlDataSources.xml
.idea/**/dynamic.xml
.idea/**/uiDesigner.xml
.idea/**/dbnavigator.xml
# 忽略模块文件(不强制提交 iml
*.iws
*.iml
*.ipr
# IDEA 缓存
out/
######################
# Java 编译输出
######################
*.class
*.log
*.ctxt
hs_err_pid*
replay_pid*
######################
# Maven
######################
target/
######################
# Gradle
######################
.gradle
build/
!gradle/wrapper/gradle-wrapper.jar
######################
# 其他临时目录
######################
bin/
gen/
dist/
release/
tmp/