forked from evadne/packmatic
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdialyzer-ignore-warnings.exs
More file actions
17 lines (16 loc) · 978 Bytes
/
dialyzer-ignore-warnings.exs
File metadata and controls
17 lines (16 loc) · 978 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
# Ignore missing Protocol implementations for built-in types
# https://github.com/elixir-lang/elixir/issues/7708
# https://github.com/elixir-lang/elixir/issues/8317
[
~r/:0:unknown_function Function .*.Atom.__impl__\/1 does not exist./,
~r/:0:unknown_function Function .*.BitString.__impl__\/1 does not exist./,
~r/:0:unknown_function Function .*.Float.__impl__\/1 does not exist./,
~r/:0:unknown_function Function .*.Function.__impl__\/1 does not exist./,
~r/:0:unknown_function Function .*.Integer.__impl__\/1 does not exist./,
~r/:0:unknown_function Function .*.List.__impl__\/1 does not exist./,
~r/:0:unknown_function Function .*.Map.__impl__\/1 does not exist./,
~r/:0:unknown_function Function .*.PID.__impl__\/1 does not exist./,
~r/:0:unknown_function Function .*.Port.__impl__\/1 does not exist./,
~r/:0:unknown_function Function .*.Reference.__impl__\/1 does not exist./,
~r/:0:unknown_function Function .*.Tuple.__impl__\/1 does not exist./
]