Skip to content

Commit

Permalink
Update erlang.mk and .gitignore
Browse files Browse the repository at this point in the history
  • Loading branch information
potatosalad committed Nov 27, 2018
1 parent c971658 commit e8e3f44
Show file tree
Hide file tree
Showing 4 changed files with 4,560 additions and 228 deletions.
59 changes: 43 additions & 16 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,3 +1,39 @@
# 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").
jose-*.tar

# erlang.mk exclusions.
.erlang.mk.packages.*
ct.coverdata
_rel
_deps
_plugins
_tdeps
/.erlang.mk
/jose.d

# Rebar3 exclusions.
.rebar3
_*
.eunit
*.o
Expand All @@ -6,24 +42,18 @@ _*
*.swp
*.swo
.erlang.cookie
.erlang.mk.packages.*
ebin
log
ct.coverdata
erl_crash.dump
.rebar
.rebar3
rebar3
_rel
_deps
_plugins
_tdeps
deps
doc
logs
test/ct.cover.spec
/_build
/cover
_build
.idea
*.iml
rebar3.crashdump
/rebar3

# Other test artifacts.
/test/cavp_SUITE_data/*.zip
/test/cavp_SUITE_data/186-3rsatestvectors
/test/cavp_SUITE_data/aesmmt
Expand All @@ -34,6 +64,3 @@ test/ct.cover.spec
/test/cavp_SUITE_data/kwtestvectors
/test/cavp_SUITE_data/pkcs-1v2-1-vec
/tmp
*.ez
/jose.d
/.erlang.mk
5 changes: 4 additions & 1 deletion build.config
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,8 @@

# Core modules.
core/core
#index/*
core/kerl
index/*
core/index
core/deps

Expand All @@ -30,8 +31,10 @@ plugins/edoc
plugins/erlydtl
plugins/escript
plugins/eunit
plugins/proper
plugins/relx
plugins/shell
plugins/sphinx
plugins/syntastic
plugins/triq
plugins/xref
Expand Down
Loading

0 comments on commit e8e3f44

Please sign in to comment.