61 lines
997 B
Plaintext
61 lines
997 B
Plaintext
# ---> Dart
|
|
|
|
# Miscellaneous
|
|
*.class
|
|
*.log
|
|
*.pyc
|
|
*.swp
|
|
.DS_Store
|
|
.atom/
|
|
.buildlog/
|
|
.history
|
|
.svn/
|
|
|
|
# IntelliJ related
|
|
*.iml
|
|
*.ipr
|
|
*.iws
|
|
.idea/
|
|
|
|
# Files and directories created by pub
|
|
.dart_tool/
|
|
.packages
|
|
build/
|
|
.pub-cache/
|
|
.pub/
|
|
|
|
**/doc/api/
|
|
**/ios/Flutter/.last_build_id
|
|
|
|
# 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
|
|
|
|
# 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 |