diff --git a/.formatter.exs b/.formatter.exs index 539935c..99176e9 100644 --- a/.formatter.exs +++ b/.formatter.exs @@ -1,4 +1,4 @@ [ import_deps: [:ecto, :ecto_sql], inputs: ["{mix,.formatter}.exs", "{config,lib,test}/**/*.{ex,exs}"] -] \ No newline at end of file +] diff --git a/config/config.exs b/config/config.exs index 6e6be1d..b961c23 100644 --- a/config/config.exs +++ b/config/config.exs @@ -16,4 +16,4 @@ config :logger, :console, format: "$time $metadata[$level] $message\n", metadata: [:request_id] -import_config "#{config_env()}.exs" \ No newline at end of file +import_config "#{config_env()}.exs" diff --git a/config/dev.exs b/config/dev.exs index 4cb3a26..b2203c8 100644 --- a/config/dev.exs +++ b/config/dev.exs @@ -1,4 +1,4 @@ import Config config :bds, BDS.Repo, - pool_size: 5 \ No newline at end of file + pool_size: 5 diff --git a/config/runtime.exs b/config/runtime.exs index f2f54e4..60260a8 100644 --- a/config/runtime.exs +++ b/config/runtime.exs @@ -8,4 +8,4 @@ if config_env() == :prod do config :bds, BDS.Repo, database: database_path, pool_size: String.to_integer(System.get_env("POOL_SIZE") || "5") -end \ No newline at end of file +end diff --git a/config/test.exs b/config/test.exs index 4ee2c83..21605f6 100644 --- a/config/test.exs +++ b/config/test.exs @@ -5,4 +5,4 @@ config :bds, BDS.Repo, pool: Ecto.Adapters.SQL.Sandbox, pool_size: 5 -config :logger, level: :warning \ No newline at end of file +config :logger, level: :warning diff --git a/lib/bds.ex b/lib/bds.ex index 449da97..3361877 100644 --- a/lib/bds.ex +++ b/lib/bds.ex @@ -2,4 +2,4 @@ defmodule BDS do @moduledoc """ Entry point for the bDS rewrite domain. """ -end \ No newline at end of file +end diff --git a/lib/bds/application.ex b/lib/bds/application.ex index 51bb97f..9626754 100644 --- a/lib/bds/application.ex +++ b/lib/bds/application.ex @@ -12,4 +12,4 @@ defmodule BDS.Application do opts = [strategy: :one_for_one, name: BDS.Supervisor] Supervisor.start_link(children, opts) end -end \ No newline at end of file +end diff --git a/lib/bds/repo.ex b/lib/bds/repo.ex index 8d4bc9f..5037e99 100644 --- a/lib/bds/repo.ex +++ b/lib/bds/repo.ex @@ -2,4 +2,4 @@ defmodule BDS.Repo do use Ecto.Repo, otp_app: :bds, adapter: Ecto.Adapters.SQLite3 -end \ No newline at end of file +end diff --git a/mix.exs b/mix.exs index 3af35fe..c125aa9 100644 --- a/mix.exs +++ b/mix.exs @@ -34,4 +34,4 @@ defmodule BDS.MixProject do test: ["ecto.create --quiet", "ecto.migrate --quiet", "test"] ] end -end \ No newline at end of file +end diff --git a/test/bds_test.exs b/test/bds_test.exs index a7afc68..a72e281 100644 --- a/test/bds_test.exs +++ b/test/bds_test.exs @@ -4,4 +4,4 @@ defmodule BDSTest do test "the repo module is configured" do assert BDS.Repo.config()[:otp_app] == :bds end -end \ No newline at end of file +end diff --git a/test/test_helper.exs b/test/test_helper.exs index 3a684e0..604fe29 100644 --- a/test/test_helper.exs +++ b/test/test_helper.exs @@ -1,2 +1,2 @@ ExUnit.start() -Ecto.Adapters.SQL.Sandbox.mode(BDS.Repo, :manual) \ No newline at end of file +Ecto.Adapters.SQL.Sandbox.mode(BDS.Repo, :manual)