mirror of
https://github.com/flutter/flutter.git
synced 2025-06-03 00:51:18 +00:00

This consolidates all of the non-template .gitignore rules into the top level .gitignore, to ignore common things more broadly, with less maintenance needed for the .gitignore files. Does not touch the templates, so that they still produce needed .gitignores as part of flutter create.
82 lines
1.5 KiB
Plaintext
82 lines
1.5 KiB
Plaintext
# Miscellaneous
|
|
*.lock
|
|
*.log
|
|
*.pyc
|
|
*.swp
|
|
.DS_Store
|
|
.atom/
|
|
.buildlog/
|
|
.history
|
|
.svn/
|
|
|
|
# IntelliJ related
|
|
*.iml
|
|
*.ipr
|
|
*.iws
|
|
.idea/
|
|
|
|
# Visual Studio Code related
|
|
.vscode/
|
|
|
|
# Flutter repo-specific
|
|
/bin/cache/
|
|
/dev/benchmarks/mega_gallery/
|
|
/dev/bots/.recipe_deps
|
|
/dev/bots/android_tools/
|
|
/dev/docs/doc/
|
|
/dev/docs/lib/
|
|
/dev/docs/pubspec.yaml
|
|
/packages/flutter/coverage/
|
|
|
|
# Flutter/Dart/Pub related
|
|
**/doc/api/
|
|
.flutter-plugins
|
|
.packages
|
|
.pub/
|
|
build/
|
|
flutter_*.png
|
|
linked_*.ds
|
|
unlinked.ds
|
|
unlinked_spec.ds
|
|
|
|
# Android related
|
|
**/android/**/GeneratedPluginRegistrant.java
|
|
**/android/**/gradle-wrapper.jar
|
|
**/android/.gradle
|
|
**/android/captures/
|
|
**/android/gradlew
|
|
**/android/gradlew.bat
|
|
**/android/local.properties
|
|
|
|
# iOS/XCode related
|
|
**/ios/**/*.mode1v3
|
|
**/ios/**/*.mode2v3
|
|
**/ios/**/*.moved-aside
|
|
**/ios/**/*.pbxuser
|
|
**/ios/**/*.perspectivev3
|
|
**/ios/**/*sync/
|
|
**/ios/**/.sconsign.dblite
|
|
**/ios/**/.tags*
|
|
**/ios/**/.vagrant/
|
|
**/ios/**/DerivedData/
|
|
**/ios/**/GeneratedPluginRegistrant.h
|
|
**/ios/**/GeneratedPluginRegistrant.m
|
|
**/ios/**/Icon?
|
|
**/ios/**/Pods/
|
|
**/ios/**/profile
|
|
**/ios/**/xcuserdata
|
|
**/ios/.generated/
|
|
**/ios/Flutter/App.framework
|
|
**/ios/Flutter/Flutter.framework
|
|
**/ios/Flutter/Generated.xcconfig
|
|
**/ios/Flutter/app.flx
|
|
**/ios/Flutter/app.zip
|
|
**/ios/ServiceDefinitions.json
|
|
|
|
# Exceptions to above rules.
|
|
!**/ios/**/default.mode1v3
|
|
!**/ios/**/default.mode2v3
|
|
!**/ios/**/default.pbxuser
|
|
!**/ios/**/default.perspectivev3
|
|
!/packages/flutter_tools/test/data/dart_dependencies_test/**/.packages
|