Add Credo configuration and Dialyzer ignore file
- Introduced a new Credo configuration file for code quality checks. - Added a Dialyzer ignore file to suppress known warnings. - Removed TODO comments for Bulgarian and Icelandic IBANs. - Updated the Dialyzer configuration in mix.exs to include
This commit is contained in:
4
mix.exs
4
mix.exs
@@ -33,7 +33,8 @@ defp description() do
|
||||
|
||||
defp dialyzer() do
|
||||
[
|
||||
plt_add_apps: [:iban_ex]
|
||||
plt_add_apps: [:iban_ex],
|
||||
ignore_warnings: ".dialyzer_ignore.exs"
|
||||
]
|
||||
end
|
||||
|
||||
@@ -52,6 +53,7 @@ defp docs() do
|
||||
source_ref: "v#{@version}",
|
||||
canonical: "http://hexdocs.pm/iban_ex",
|
||||
source_url: @source_url,
|
||||
homepage_url: @source_url,
|
||||
extras: ["README.md"]
|
||||
]
|
||||
end
|
||||
|
||||
Reference in New Issue
Block a user