Re-enable Credo ModuleDoc check

Closes #108
This commit is contained in:
Claudio Ortolina
2026-03-13 10:52:01 +00:00
parent 4db9213129
commit 9e1dbfd530
48 changed files with 175 additions and 4 deletions
+2
View File
@@ -1,4 +1,6 @@
defmodule LastFm.Import do
@moduledoc false
@spec batch(keyword()) :: {:ok, non_neg_integer()} | {:error, term()}
def batch(opts) do
with {:ok, tracks} <- LastFm.get_tracks(opts) do
+2
View File
@@ -1,4 +1,6 @@
defmodule LastFm.Scrobble do
@moduledoc false
defstruct [:track, :artist, :timestamp, :album, :album_artist, :mbid]
@type t :: %__MODULE__{
+2
View File
@@ -1,4 +1,6 @@
defmodule LastFm.Session do
@moduledoc false
require Record
defstruct [:name, :key, :pro]
+2
View File
@@ -1,4 +1,6 @@
defmodule LastFm.Supervisor do
@moduledoc false
use Supervisor
def start_link(config) do