Skip to content

Commit 5cca11c

Browse files
committed
increase the target files for formatting
1 parent a5726e3 commit 5cca11c

File tree

2 files changed

+20
-15
lines changed

2 files changed

+20
-15
lines changed

.formatter.exs

+2-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
[
22
inputs: [
3-
"lib/**/*.{ex,exs}"
3+
"{mix,.formatter}.exs",
4+
"{config,lib}/**/*.{ex,exs}"
45
]
56
]

mix.exs

+18-14
Original file line numberDiff line numberDiff line change
@@ -2,18 +2,20 @@ defmodule PowerAssert.MixProject do
22
use Mix.Project
33

44
def project do
5-
[app: :power_assert,
6-
version: "0.2.1",
7-
elixir: "~> 1.6",
8-
description: "Power Assert in Elixir. Shows evaluation results each expression.",
9-
package: [
10-
maintainers: ["Takayuki Matsubara"],
11-
licenses: ["Apache 2.0"],
12-
links: %{"GitHub" => "https://github.com/ma2gedev/power_assert_ex"}
13-
],
14-
build_embedded: Mix.env == :prod,
15-
start_permanent: Mix.env == :prod,
16-
deps: deps()]
5+
[
6+
app: :power_assert,
7+
version: "0.2.1",
8+
elixir: "~> 1.6",
9+
description: "Power Assert in Elixir. Shows evaluation results each expression.",
10+
package: [
11+
maintainers: ["Takayuki Matsubara"],
12+
licenses: ["Apache 2.0"],
13+
links: %{"GitHub" => "https://github.com/ma2gedev/power_assert_ex"}
14+
],
15+
build_embedded: Mix.env() == :prod,
16+
start_permanent: Mix.env() == :prod,
17+
deps: deps()
18+
]
1719
end
1820

1921
# Configuration for the OTP application
@@ -33,7 +35,9 @@ defmodule PowerAssert.MixProject do
3335
#
3436
# Type `mix help deps` for more examples and options
3537
defp deps do
36-
[{:ex_spec, ">= 2.0.0", only: :test},
37-
{:ex_doc, ">= 0.0.0", only: :dev}]
38+
[
39+
{:ex_spec, ">= 2.0.0", only: :test},
40+
{:ex_doc, ">= 0.0.0", only: :dev}
41+
]
3842
end
3943
end

0 commit comments

Comments
 (0)