From 14fe6b0a5c149b60ccd5768eaf540f22985f9c8f Mon Sep 17 00:00:00 2001 From: Jonathan Boulanger Date: Tue, 4 Aug 2015 12:13:51 -0400 Subject: [PATCH] Create Elm.gitignore .gitignore for Elm projects. Ignores installed packages (elm-package.json) and elm-stuff/, as these files will be generated once elm-package has been run for a .elm file. This is also beneficial where dependencies have changed, and an install package is no longer required. elm-repl generated files have also been ignored. Most of the time, elm-repl manages to delete these files automatically, but there are scenarios where these files are not deleted on the closing of elm-repl --- Elm.gitignore | 5 +++++ 1 file changed, 5 insertions(+) create mode 100644 Elm.gitignore diff --git a/Elm.gitignore b/Elm.gitignore new file mode 100644 index 00000000..24c03e28 --- /dev/null +++ b/Elm.gitignore @@ -0,0 +1,5 @@ +# elm-package generated files +elm-package.json +elm-stuff/ +# elm-repl generated files +repl-temp-*