Skip to content

Commit

Permalink
Update .gitignore
Browse files Browse the repository at this point in the history
according to the .gitignore generated by `mix new` in Elixir v1.7
  • Loading branch information
eksperimental committed Dec 21, 2018
1 parent 3dd27ea commit 03d8b3e
Showing 1 changed file with 27 additions and 9 deletions.
36 changes: 27 additions & 9 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,12 +1,30 @@
/_build
/deps
/doc
/test/fixtures/umbrella/_build
/test/tmp
/ex_doc-*.ez
/ex_doc-*.tar
/erl_crash.dump
/node_modules
# The directory Mix will write compiled artifacts to.
/_build/

# If you run "mix test --cover", coverage assets end up here.
/cover/

# The directory Mix downloads your dependencies sources to.
/deps/

# Where 3rd-party dependencies like ExDoc output generated docs.
/doc/

# Ignore .fetch files in case you like to edit your project deps locally.
/.fetch

# If the VM crashes, it generates a dump, let's ignore it too.
erl_crash.dump

# Also ignore archive artifacts (built via "mix archive.build").
*.ez

# Ignore package tarball (built via "mix hex.build").
ex_doc-*.tar

/node_modules/
/test/fixtures/umbrella/_build/
/test/tmp/
/npm-debug.log

# Ignore artifacts from non-production builds
Expand Down

0 comments on commit 03d8b3e

Please sign in to comment.