134 lines
3.2 KiB
Text
134 lines
3.2 KiB
Text
|
||
# FVM Version Cache
|
||
.fvm/
|
||
|
||
# Created by https://www.toptal.com/developers/gitignore/api/flutter,dart,visualstudiocode,linux
|
||
# Edit at https://www.toptal.com/developers/gitignore?templates=flutter,dart,visualstudiocode,linux
|
||
|
||
### Dart ###
|
||
# See https://www.dartlang.org/guides/libraries/private-files
|
||
|
||
# Files and directories created by pub
|
||
.dart_tool/
|
||
.packages
|
||
build/
|
||
# If you're building an application, you may want to check-in your pubspec.lock
|
||
pubspec.lock
|
||
|
||
# Directory created by dartdoc
|
||
# If you don't generate documentation locally you can remove this line.
|
||
doc/api/
|
||
|
||
# dotenv environment variables file
|
||
.env*
|
||
|
||
# Avoid committing generated Javascript files:
|
||
*.dart.js
|
||
*.info.json # Produced by the --dump-info flag.
|
||
*.js # When generated by dart2js. Don't specify *.js if your
|
||
# project includes source files written in JavaScript.
|
||
*.js_
|
||
*.js.deps
|
||
*.js.map
|
||
|
||
.flutter-plugins
|
||
.flutter-plugins-dependencies
|
||
|
||
### Dart Patch ###
|
||
# dotenv environment variables file
|
||
.env
|
||
|
||
### Flutter ###
|
||
# Flutter/Dart/Pub related
|
||
**/doc/api/
|
||
.fvm/flutter_sdk
|
||
.pub-cache/
|
||
.pub/
|
||
coverage/
|
||
lib/generated_plugin_registrant.dart
|
||
# For library packages, don’t commit the pubspec.lock file.
|
||
# Regenerating the pubspec.lock file lets you test your package against the latest compatible versions of its dependencies.
|
||
# See https://dart.dev/guides/libraries/private-files#pubspeclock
|
||
#pubspec.lock
|
||
|
||
# Android related
|
||
**/android/**/gradle-wrapper.jar
|
||
**/android/.gradle
|
||
**/android/captures/
|
||
**/android/gradlew
|
||
**/android/gradlew.bat
|
||
**/android/key.properties
|
||
**/android/local.properties
|
||
**/android/**/GeneratedPluginRegistrant.java
|
||
|
||
# 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/**/Icon?
|
||
**/ios/**/Pods/
|
||
**/ios/**/.symlinks/
|
||
**/ios/**/profile
|
||
**/ios/**/xcuserdata
|
||
**/ios/.generated/
|
||
**/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/app.zip
|
||
**/ios/Flutter/flutter_assets/
|
||
**/ios/Flutter/flutter_export_environment.sh
|
||
**/ios/ServiceDefinitions.json
|
||
**/ios/Runner/GeneratedPluginRegistrant.*
|
||
|
||
# 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
|
||
|
||
### Linux ###
|
||
*~
|
||
|
||
# temporary files which can be created if a process still has a handle open of a deleted file
|
||
.fuse_hidden*
|
||
|
||
# KDE directory preferences
|
||
.directory
|
||
|
||
# Linux trash folder which might appear on any partition or disk
|
||
.Trash-*
|
||
|
||
# .nfs files are created when an open file is removed but is still being accessed
|
||
.nfs*
|
||
|
||
### VisualStudioCode ###
|
||
.vscode/*
|
||
!.vscode/settings.json
|
||
!.vscode/tasks.json
|
||
!.vscode/launch.json
|
||
!.vscode/extensions.json
|
||
!.vscode/*.code-snippets
|
||
|
||
# Local History for Visual Studio Code
|
||
.history/
|
||
|
||
# Built Visual Studio Code Extensions
|
||
*.vsix
|
||
|
||
### VisualStudioCode Patch ###
|
||
# Ignore all local history of files
|
||
.history
|
||
.ionide
|
||
|
||
# End of https://www.toptal.com/developers/gitignore/api/flutter,dart,visualstudiocode,linux
|