SpectraRust/.gitignore

50 lines
701 B
Plaintext
Raw Permalink 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.

# Rust 构建输出
/target/
**/*.rs.bk
# Cargo.lock 处理:
# - 对于库项目,建议忽略 Cargo.lock取消下面一行的注释
# - 对于可执行项目,建议保留 Cargo.lock 并提交(保留此行被注释)
# Cargo.lock
# Fortran 编译输出
*.o
*.obj
*.exe
*.out
*.a
*.lib
*.so
*.dylib
*.dll
*.mod # 模块文件
*.smod # 子模块文件
*.i # 预处理器输出
*.i90
*.f90~ # 备份文件
*.f~
*.for~
# Fortran 构建目录(例如 fpm 默认的 build/
build/
# 编辑器 / IDE 文件
.vscode/
.idea/
*.swp
*.swo
*~
.*.swp
.*.swo
# 操作系统元文件
.DS_Store
Thumbs.db
desktop.ini
# 其他常见临时文件
*.bak
*.log
*.tmp
__pycache__