Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Feat/theme handling #109

Merged
merged 13 commits into from
Aug 12, 2023
Prev Previous commit
Next Next commit
Remove moduledocs
  • Loading branch information
ArthurClemens committed Aug 12, 2023
commit fb56c8b6f510291438ff612645b259595cb6ab73
2 changes: 2 additions & 0 deletions lib/helpers/declaration_helpers.ex
Original file line number Diff line number Diff line change
@@ -1,4 +1,6 @@
defmodule PrimerLive.Helpers.DeclarationHelpers do
@moduledoc false

defmacro class() do
quote do
attr(:class, :string, default: nil, doc: "Additional classname.")
Expand Down
2 changes: 2 additions & 0 deletions lib/test_helpers/todos/todo.ex
Original file line number Diff line number Diff line change
@@ -1,4 +1,6 @@
defmodule PrimerLive.TestHelpers.Repo.Todo do
@moduledoc false

use Ecto.Schema

schema "todos" do
Expand Down
2 changes: 2 additions & 0 deletions lib/test_helpers/todos/todos.ex
Original file line number Diff line number Diff line change
@@ -1,4 +1,6 @@
defmodule PrimerLive.TestHelpers.Repo.Todos do
@moduledoc false

import Ecto.Changeset, except: [change: 1]
alias PrimerLive.TestHelpers.Repo.Todo

Expand Down