You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

Dart.gitignore 824B

123456789101112131415161718192021222324252627282930313233
  1. # See https://www.dartlang.org/tools/private-files.html
  2. # Files and directories created by pub
  3. # SDK 1.20 and later (no longer creates packages directories)
  4. .packages
  5. .pub/
  6. build/
  7. # Older SDK versions
  8. # (Include if the minimum SDK version specified in pubsepc.yaml is earlier than 1.20)
  9. .project
  10. .buildlog
  11. **/packages/
  12. # Files created by dart2js
  13. # (Most Dart developers will use pub build to compile Dart, use/modify these
  14. # rules if you intend to use dart2js directly
  15. # Convention is to use extension '.dart.js' for Dart compiled to Javascript to
  16. # differentiate from explicit Javascript files)
  17. *.dart.js
  18. *.part.js
  19. *.js.deps
  20. *.js.map
  21. *.info.json
  22. # Directory created by dartdoc
  23. doc/api/
  24. # Don't commit pubspec lock file
  25. # (Library packages only! Remove pattern if developing an application package)
  26. pubspec.lock