The repo had no root-level .gitignore, so .dart_tool/, ephemeral plugin symlinks and build artifacts were being tracked across the workspace. Every flutter pub get regenerated them and they polluted PRs as recurring noise. - Add root .gitignore covering .dart_tool/, ephemeral plugin symlinks, build/, coverage/, IDE files - Untrack ~39 existing cache files across root, modules and packages
21 lines
393 B
Plaintext
21 lines
393 B
Plaintext
# Dart / Flutter workspace caches (regenerated by `flutter pub get` / `dart pub get`)
|
|
.dart_tool/
|
|
.flutter-plugins-dependencies
|
|
.packages
|
|
.pub-cache/
|
|
.pub/
|
|
|
|
# Per-package build outputs
|
|
**/build/
|
|
**/coverage/
|
|
|
|
# Flutter desktop ephemeral plugin symlinks (regenerated on pub get)
|
|
**/linux/flutter/ephemeral/
|
|
**/macos/Flutter/ephemeral/
|
|
**/windows/flutter/ephemeral/
|
|
|
|
# IDE
|
|
.idea/
|
|
*.iml
|
|
.vscode/
|