110 lines
2.7 KiB
Plaintext
110 lines
2.7 KiB
Plaintext
# ==============================================================================
|
|
# 1. 操作系统与本地环境缓存
|
|
# ==============================================================================
|
|
.DS_Store
|
|
.DS_Store?
|
|
._*
|
|
.Spotlight-V100
|
|
.Trashes
|
|
ehthumbs.db
|
|
Thumbs.db
|
|
|
|
# 根目录本地临时/缓存文件夹
|
|
.dart_pub_cache/
|
|
.home/
|
|
.workbuddy-ai/
|
|
|
|
# ==============================================================================
|
|
# 2. 编辑器与 IDE 配置 (IDE / Editor)
|
|
# ==============================================================================
|
|
.idea/
|
|
*.iml
|
|
*.ipr
|
|
*.iws
|
|
.vscode/
|
|
*.swp
|
|
*.swo
|
|
*~
|
|
|
|
# ==============================================================================
|
|
# 3. Flutter & Dart 编译与依赖产物
|
|
# ==============================================================================
|
|
.dart_tool/
|
|
.packages
|
|
.pub-cache/
|
|
.pub/
|
|
.flutter-plugins
|
|
.flutter-plugins-dependencies
|
|
build/
|
|
**/build/
|
|
**/coverage/
|
|
**/doc/api/
|
|
**/.dart_tool/
|
|
|
|
# 混淆与符号文件
|
|
app.*.symbols
|
|
app.*.map.json
|
|
|
|
# ==============================================================================
|
|
# 4. Android 本地配置与构建产物
|
|
# ==============================================================================
|
|
**/android/.gradle/
|
|
**/android/local.properties
|
|
**/android/captures/
|
|
**/android/app/debug/
|
|
**/android/app/profile/
|
|
**/android/app/release/
|
|
**/android/GeneratedPluginRegistrant.java
|
|
|
|
# 签名证书与私钥(敏感信息)
|
|
*.keystore
|
|
*.jks
|
|
*.key
|
|
|
|
# ==============================================================================
|
|
# 5. iOS / macOS 本地构建与依赖产物
|
|
# ==============================================================================
|
|
**/ios/Flutter/.last_build_id
|
|
**/ios/Flutter/App.framework
|
|
**/ios/Flutter/Flutter.framework
|
|
**/ios/Flutter/Flutter.podspec
|
|
**/ios/Flutter/Generated.xcconfig
|
|
**/ios/Flutter/app.flx
|
|
**/ios/Flutter/flutter_assets/
|
|
**/ios/Flutter/flutter_export_environment.sh
|
|
**/ios/Flutter/GeneratedPluginRegistrant.h
|
|
**/ios/Flutter/GeneratedPluginRegistrant.m
|
|
**/ios/.symlinks/
|
|
**/ios/Pods/
|
|
**/ios/Podfile.lock
|
|
**/ios/**/GeneratedPluginRegistrant.swift
|
|
|
|
**/macos/Flutter/ephemeral/
|
|
**/macos/Flutter/GeneratedPluginRegistrant.swift
|
|
**/macos/Pods/
|
|
**/macos/Podfile.lock
|
|
|
|
**/*.xcworkspace/xcuserdata/
|
|
**/*.xcuserdatad/
|
|
**/DerivedData/
|
|
|
|
# ==============================================================================
|
|
# 6. 本地环境变量与私密配置 (Secrets / Env)
|
|
# ==============================================================================
|
|
.env
|
|
.env.*
|
|
*.local
|
|
|
|
# ==============================================================================
|
|
# 7. Python 服务端构建与运行产物
|
|
# ==============================================================================
|
|
__pycache__/
|
|
*.py[cod]
|
|
*$py.class
|
|
venv/
|
|
.venv/
|
|
data/
|
|
*.db
|
|
*.sqlite
|
|
*.sqlite3
|