浏览代码

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
pull/1610/head
Jonathan Boulanger 8 年前
父节点
当前提交
14fe6b0a5c
共有 1 个文件被更改,包括 5 次插入0 次删除
  1. 5
    0
      Elm.gitignore

+ 5
- 0
Elm.gitignore 查看文件

@@ -0,0 +1,5 @@
# elm-package generated files
elm-package.json
elm-stuff/
# elm-repl generated files
repl-temp-*

正在加载...
取消
保存