Last active
August 8, 2024 10:38
-
-
Save teddichiiwa/7ccd68fa840b38f2cb2855bf4154a683 to your computer and use it in GitHub Desktop.
.gitignore for Dart/ Flutter project
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # Miscellaneous | |
| *.class | |
| *.log | |
| *.pyc | |
| *.swp | |
| .DS_Store | |
| .atom/ | |
| .buildlog/ | |
| .history | |
| .svn/ | |
| # IntelliJ related | |
| *.iml | |
| *.ipr | |
| *.iws | |
| .idea/ | |
| # The .vscode folder contains launch configuration and tasks you configure in | |
| # VS Code which you may wish to be included in version control, so this line | |
| # is commented out by default. | |
| .vscode/settings.json | |
| # Flutter/Dart/Pub related | |
| **/doc/api/ | |
| **/ios/Flutter/.last_build_id | |
| .dart_tool/ | |
| .flutter-plugins | |
| .flutter-plugins-dependencies | |
| .packages | |
| .pub-cache/ | |
| .pub/ | |
| /build/ | |
| .fvm/flutter_sdk | |
| # Env | |
| .env | |
| .env.* | |
| # Web related | |
| lib/generated_plugin_registrant.dart | |
| # Symbolication related | |
| app.*.symbols | |
| # Obfuscation related | |
| app.*.map.json | |
| # Android Studio will place build artifacts here | |
| /android/app/debug | |
| /android/app/profile | |
| /android/app/release | |
| /android/app/build | |
| # iOS | |
| # pre-actions will copy from configuration to Runner before build | |
| **/Runner/app.entitlements | |
| #iOs build folder | |
| /ios/build | |
| # FVM related | |
| .fvm/flutter_sdk | |
| # Melos | |
| pubspec_overrides.yaml | |
| # Comment this line if you are not using package | |
| pubspec.lock |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment