Skip to content

Commit d379bf9

Browse files
committed
Regenerate formatter config and gitignore with the latest Elixir
1 parent 94c5047 commit d379bf9

File tree

2 files changed

+13
-6
lines changed

2 files changed

+13
-6
lines changed

.formatter.exs

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
# Used by "mix format"
12
[
2-
inputs: ["mix.exs", "{config,lib,test}/**/*.{ex,exs}"]
3+
inputs: ["{mix,.formatter}.exs", "{config,lib,test}/**/*.{ex,exs}"]
34
]

.gitignore

Lines changed: 11 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,14 @@
11
# The directory Mix will write compiled artifacts to.
2-
/_build
2+
/_build/
33

44
# If you run "mix test --cover", coverage assets end up here.
5-
/cover
5+
/cover/
66

77
# The directory Mix downloads your dependencies sources to.
8-
/deps
8+
/deps/
99

10-
# Where 3rd-party dependencies like ExDoc output generated docs.
11-
/doc
10+
# Where third-party dependencies like ExDoc output generated docs.
11+
/doc/
1212

1313
# Ignore .fetch files in case you like to edit your project deps locally.
1414
/.fetch
@@ -19,5 +19,11 @@ erl_crash.dump
1919
# Also ignore archive artifacts (built via "mix archive.build").
2020
*.ez
2121

22+
# Ignore package tarball (built via "mix hex.build").
23+
oembed-*.tar
24+
25+
# Temporary files, for example, from tests.
26+
/tmp/
27+
2228
# Ignore Mix lock file
2329
mix.lock

0 commit comments

Comments
 (0)