pubspec.lock was incorrectly gitignored — this is a Flutter app, not a package, so the lockfile should be committed for reproducible builds. Without it, CI resolved drift to its minimum (2.20.3) which constrains sqlite3 to 2.x, causing dart analyze to disagree on whether Database.close() exists vs the local environment using 3.3.1. Also pins sqlite3: ^3.1.5 explicitly in pubspec.yaml as belt-and- suspenders so the constraint is visible without reading the lockfile. Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
122 lines
1.7 KiB
Plaintext
122 lines
1.7 KiB
Plaintext
# --- Flutter/Dart ---
|
|
coverage/
|
|
.dart_tool/
|
|
.dart-tool/
|
|
.packages
|
|
build/
|
|
*.g.dart
|
|
*.freezed.dart
|
|
|
|
# --- IDEs ---
|
|
.idea/
|
|
.vscode/
|
|
*.iml
|
|
|
|
# --- OS / System ---
|
|
.DS_Store
|
|
Thumbs.db
|
|
|
|
# --- Environment & Secrets ---
|
|
assets/changelog.txt
|
|
.env
|
|
.env.local
|
|
.envrc
|
|
.direnv/
|
|
|
|
# --- Android ---
|
|
android/.gradle/
|
|
android/local.properties
|
|
android/app/google-services.json
|
|
android/key.properties
|
|
android/app/src/main/java/io/flutter/plugins/
|
|
.android/
|
|
Android/
|
|
.gradle/
|
|
.emulator_console_auth_token
|
|
|
|
# --- iOS ---
|
|
ios/Pods/
|
|
ios/Flutter/Generated.xcconfig
|
|
ios/Flutter/ephemeral/
|
|
ios/Flutter/flutter_export_environment.sh
|
|
ios/Runner/GeneratedPluginRegistrant.*
|
|
*.xcworkspace/
|
|
|
|
# --- macOS ---
|
|
macos/Pods/
|
|
macos/Flutter/GeneratedPluginRegistrant.swift
|
|
macos/Flutter/ephemeral/
|
|
|
|
# --- Linux ---
|
|
linux/flutter/ephemeral/
|
|
linux/flutter/generated_plugin_registrant.*
|
|
linux/flutter/generated_plugins.cmake
|
|
|
|
# --- Flutter Metadata ---
|
|
.flutter-plugins
|
|
.flutter-plugins-dependencies
|
|
.metadata
|
|
|
|
# --- Python ---
|
|
__pycache__/
|
|
*.pyc
|
|
|
|
# --- Tools & Cache ---
|
|
.fvm/
|
|
fvm/
|
|
.qwen
|
|
.claude
|
|
.task
|
|
.atuin/
|
|
.cache/
|
|
.config/
|
|
.local/
|
|
.nix-profile
|
|
.npm/
|
|
.pub-cache/
|
|
.dartServer/
|
|
.flutter
|
|
.dart-cli-completion/
|
|
snap/
|
|
|
|
# --- User Configuration (Home Dir Junk) ---
|
|
.bash_logout
|
|
.bashrc
|
|
.profile
|
|
.zcompdump
|
|
.zshrc
|
|
.gitconfig
|
|
.lesshst
|
|
.tmux.conf
|
|
.ssh/
|
|
|
|
# --- Logs & Data ---
|
|
*.log
|
|
runner-data/
|
|
sharedinbox-runner/runner-data/
|
|
.gemini/
|
|
.rustup/
|
|
|
|
# --- Hugo ---
|
|
website/public/
|
|
website/resources/
|
|
website/.hugo_build.lock
|
|
website/content/builds/_index.md
|
|
website/content/builds/[0-9]*/
|
|
|
|
.copilot/
|
|
.dotnet/
|
|
.vscode-server/
|
|
.wget-hsts
|
|
|
|
tmp/
|
|
test/widget/failures/
|
|
.claude*
|
|
|
|
dagger-certs
|
|
.Xauthority
|
|
.sharedinbox-agent-state.json
|
|
|
|
.viminfo
|
|
/go
|