fix gitignore for less annoying shit with emacs

master
Rachel Fae Fox (foxiepaws) 2019-07-30 22:49:41 -04:00
parent a221c628ad
commit 4799cf7675
2 changed files with 2 additions and 30 deletions

2
.gitignore vendored
View File

@ -9,3 +9,5 @@ erl_crash.dump
*.beam
/config/*.secret.exs
# emacs related
*~

View File

@ -1,30 +0,0 @@
defmodule SystemBooster.MixProject do
use Mix.Project
def project do
[
app: :systembooster,
version: "0.1.0",
elixir: "~> 1.8",
start_permanent: Mix.env() == :prod,
deps: deps()
]
end
# Run "mix help compile.app" to learn about applications.
def application do
[
extra_applications: [:logger]
]
end
# Run "mix help deps" to learn about dependencies.
defp deps do
[
# {:dep_from_hexpm, "~> 0.3.0"},
# {:dep_from_git, git: "https://github.com/elixir-lang/my_dep.git", tag: "0.1.0"}
{:hunter, "~> 0.4"}
]
end
end