Skip to content

Commit

Permalink
increase the target files for formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
ma2gedev committed Dec 26, 2020
1 parent a5726e3 commit 5cca11c
Show file tree
Hide file tree
Showing 2 changed files with 20 additions and 15 deletions.
3 changes: 2 additions & 1 deletion .formatter.exs
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
[
inputs: [
"lib/**/*.{ex,exs}"
"{mix,.formatter}.exs",
"{config,lib}/**/*.{ex,exs}"
]
]
32 changes: 18 additions & 14 deletions mix.exs
Original file line number Diff line number Diff line change
Expand Up @@ -2,18 +2,20 @@ defmodule PowerAssert.MixProject do
use Mix.Project

def project do
[app: :power_assert,
version: "0.2.1",
elixir: "~> 1.6",
description: "Power Assert in Elixir. Shows evaluation results each expression.",
package: [
maintainers: ["Takayuki Matsubara"],
licenses: ["Apache 2.0"],
links: %{"GitHub" => "https://github.com/ma2gedev/power_assert_ex"}
],
build_embedded: Mix.env == :prod,
start_permanent: Mix.env == :prod,
deps: deps()]
[
app: :power_assert,
version: "0.2.1",
elixir: "~> 1.6",
description: "Power Assert in Elixir. Shows evaluation results each expression.",
package: [
maintainers: ["Takayuki Matsubara"],
licenses: ["Apache 2.0"],
links: %{"GitHub" => "https://github.com/ma2gedev/power_assert_ex"}
],
build_embedded: Mix.env() == :prod,
start_permanent: Mix.env() == :prod,
deps: deps()
]
end

# Configuration for the OTP application
Expand All @@ -33,7 +35,9 @@ defmodule PowerAssert.MixProject do
#
# Type `mix help deps` for more examples and options
defp deps do
[{:ex_spec, ">= 2.0.0", only: :test},
{:ex_doc, ">= 0.0.0", only: :dev}]
[
{:ex_spec, ">= 2.0.0", only: :test},
{:ex_doc, ">= 0.0.0", only: :dev}
]
end
end

0 comments on commit 5cca11c

Please sign in to comment.