diff options
author | Melody Horn <melody@boringcactus.com> | 2021-03-15 06:17:25 -0600 |
---|---|---|
committer | Melody Horn <melody@boringcactus.com> | 2021-03-15 06:17:25 -0600 |
commit | a106c948c2056cb855ae6603842c5c165f03d716 (patch) | |
tree | a3b94b924ebf3d487ce3a14b7c1f1b3eae7b0610 /.gitignore | |
download | hope-elixir.tar.gz hope-elixir.zip |
initialize Elixir projectelixir
Diffstat (limited to '.gitignore')
-rw-r--r-- | .gitignore | 27 |
1 files changed, 27 insertions, 0 deletions
diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..53cbd1a --- /dev/null +++ b/.gitignore @@ -0,0 +1,27 @@ +# 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 third-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"). +hope-*.tar + + +# Temporary files for e.g. tests +/tmp |