Committed by
GitHub
Merge pull request #73 from hdeyana/patch-1
Create .gitignore
Showing
1 changed file
with
27 additions
and
0 deletions
.gitignore
0 → 100644
| 1 | +# See https://www.dartlang.org/guides/libraries/private-files | ||
| 2 | + | ||
| 3 | +# Files and directories created by pub | ||
| 4 | +.dart_tool/ | ||
| 5 | +.packages | ||
| 6 | +build/ | ||
| 7 | +# If you're building an application, you may want to check-in your pubspec.lock | ||
| 8 | +pubspec.lock | ||
| 9 | + | ||
| 10 | +# Directory created by dartdoc | ||
| 11 | +# If you don't generate documentation locally you can remove this line. | ||
| 12 | +doc/api/ | ||
| 13 | + | ||
| 14 | +# Avoid committing generated Javascript files: | ||
| 15 | +*.dart.js | ||
| 16 | +*.info.json # Produced by the --dump-info flag. | ||
| 17 | +*.js # When generated by dart2js. Don't specify *.js if your | ||
| 18 | + # project includes source files written in JavaScript. | ||
| 19 | +*.js_ | ||
| 20 | +*.js.deps | ||
| 21 | +*.js.map | ||
| 22 | + | ||
| 23 | +# Files and directories created when test or run example | ||
| 24 | +example/android/ | ||
| 25 | +example/ios/ | ||
| 26 | +example/.dart_tool/ | ||
| 27 | +example/.packages |
-
Please register or login to post a comment