diff options
author | BC Ko <bcko@users.noreply.github.com> | 2018-05-27 14:04:07 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-05-27 14:04:07 -0700 |
commit | 7df710b0dd48ae1d2d5e6c47376de06190edad93 (patch) | |
tree | 223589b999cdf19ead3fe8f5857e8922f55c339d | |
parent | c5437d0b115bdfd09af543689b9eed79888db2e3 (diff) | |
download | gitignore-7df710b0dd48ae1d2d5e6c47376de06190edad93.tar.gz gitignore-7df710b0dd48ae1d2d5e6c47376de06190edad93.zip |
Update Dart.gitignore
updated according to https://www.dartlang.org/guides/libraries/private-files
-rw-r--r-- | Dart.gitignore | 18 |
1 files changed, 17 insertions, 1 deletions
diff --git a/Dart.gitignore b/Dart.gitignore index 7bf00e82..bd7e39fa 100644 --- a/Dart.gitignore +++ b/Dart.gitignore @@ -3,7 +3,6 @@ # Files and directories created by pub .dart_tool/ .packages -.pub/ build/ # If you're building an application, you may want to check-in your pubspec.lock pubspec.lock @@ -11,3 +10,20 @@ pubspec.lock # Directory created by dartdoc # If you don't generate documentation locally you can remove this line. doc/api/ + +# 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 + + +# files and directories created by development environments +*.iml // IntelliJ +*.ipr // IntelliJ +*.iws // IntelliJ +.idea/ // IntelliJ +.DS_Store // Mac |