初始化项目
This commit is contained in:
121
.gitignore
vendored
Normal file
121
.gitignore
vendored
Normal file
@@ -0,0 +1,121 @@
|
||||
# ===================== 通用基础忽略 =====================
|
||||
# 操作系统相关文件
|
||||
.DS_Store # macOS 系统文件
|
||||
Thumbs.db # Windows 系统文件
|
||||
desktop.ini # Windows 配置文件
|
||||
*.tmp # 临时文件
|
||||
*.temp # 临时文件
|
||||
*.swp # Vim 交换文件
|
||||
*~ # 临时文件
|
||||
|
||||
# 日志文件
|
||||
logs/
|
||||
*.log
|
||||
npm-debug.log*
|
||||
yarn-debug.log*
|
||||
yarn-error.log*
|
||||
.pnpm-debug.log*
|
||||
|
||||
# 缓存和构建产物
|
||||
.cache/
|
||||
dist/
|
||||
build/
|
||||
out/
|
||||
target/ # Java 编译产物
|
||||
classes/ # Java 类文件
|
||||
*.o # 编译中间文件
|
||||
*.obj # 编译中间文件
|
||||
|
||||
# ===================== 编程语言专属忽略 =====================
|
||||
# Python
|
||||
__pycache__/
|
||||
*.py[cod]
|
||||
*$py.class
|
||||
*.so
|
||||
.Python
|
||||
env/
|
||||
venv/
|
||||
ENV/
|
||||
*.egg-info/
|
||||
.eggs/
|
||||
build/
|
||||
develop-eggs/
|
||||
dist/
|
||||
downloads/
|
||||
eggs/
|
||||
.eggs/
|
||||
lib/
|
||||
lib64/
|
||||
parts/
|
||||
sdist/
|
||||
var/
|
||||
wheels/
|
||||
*.egg
|
||||
|
||||
# Node.js
|
||||
node_modules/
|
||||
npm-debug.log
|
||||
yarn.lock
|
||||
package-lock.json
|
||||
pnpm-lock.yaml
|
||||
yarn-error.log
|
||||
.nyc_output/
|
||||
coverage/
|
||||
|
||||
# Java
|
||||
*.class
|
||||
*.jar
|
||||
*.war
|
||||
*.ear
|
||||
*.jmod
|
||||
*.bak
|
||||
*.tmp
|
||||
hs_err_pid*
|
||||
replay_pid*
|
||||
|
||||
# ===================== IDE/编辑器配置 =====================
|
||||
# VS Code
|
||||
.vscode/
|
||||
*.code-workspace
|
||||
.history/
|
||||
|
||||
# IntelliJ IDEA / WebStorm
|
||||
.idea/
|
||||
*.iml
|
||||
*.iws
|
||||
*.ipr
|
||||
out/
|
||||
|
||||
# Eclipse
|
||||
.classpath
|
||||
.project
|
||||
.settings/
|
||||
bin/
|
||||
.metadata/
|
||||
|
||||
# ===================== 其他常见忽略 =====================
|
||||
# 环境变量文件
|
||||
.env
|
||||
.env.local
|
||||
.env.development.local
|
||||
.env.test.local
|
||||
.env.production.local
|
||||
.env.*.local
|
||||
|
||||
# 压缩包
|
||||
*.zip
|
||||
*.rar
|
||||
*.7z
|
||||
*.tar.gz
|
||||
|
||||
# 数据库文件
|
||||
*.db
|
||||
*.sqlite
|
||||
*.sqlite3
|
||||
data/
|
||||
|
||||
# 敏感信息文件
|
||||
*.pem
|
||||
*.key
|
||||
*.secret
|
||||
credentials.json
|
||||
Reference in New Issue
Block a user