We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b1cbe7a commit ea2ae22Copy full SHA for ea2ae22
lib/mix/lib/mix/tasks/new.ex
@@ -315,6 +315,9 @@ defmodule Mix.Tasks.New do
315
# Where third-party dependencies like ExDoc output generated docs.
316
/doc/
317
318
+ # Temporary files, for example, from tests.
319
+ /tmp/
320
+
321
# If the VM crashes, it generates a dump, let's ignore it too.
322
erl_crash.dump
323
@@ -324,8 +327,6 @@ defmodule Mix.Tasks.New do
324
327
# Ignore package tarball (built via "mix hex.build").
325
328
<%= @app %>-*.tar
326
329
<% end %>
- # Temporary files, for example, from tests.
- /tmp/
330
""")
331
332
embed_template(:mix_exs, """
0 commit comments