Skip to content

Commit 7df710b

Browse files
authored
Update Dart.gitignore
updated according to https://www.dartlang.org/guides/libraries/private-files
1 parent c5437d0 commit 7df710b

File tree

1 file changed

+17
-1
lines changed

1 file changed

+17
-1
lines changed

Dart.gitignore

Lines changed: 17 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,11 +3,27 @@
33
# Files and directories created by pub
44
.dart_tool/
55
.packages
6-
.pub/
76
build/
87
# If you're building an application, you may want to check-in your pubspec.lock
98
pubspec.lock
109

1110
# Directory created by dartdoc
1211
# If you don't generate documentation locally you can remove this line.
1312
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+
24+
# files and directories created by development environments
25+
*.iml // IntelliJ
26+
*.ipr // IntelliJ
27+
*.iws // IntelliJ
28+
.idea/ // IntelliJ
29+
.DS_Store // Mac

0 commit comments

Comments
 (0)