W0074 - eqwalizer:ignore error suppression
Example
-module(main).
-export([test/1]).
-spec test(atom()) -> ok.
test(A) ->
% eqwalizer:ignore
%%^^^^^^^^^^^^^^^^^ 💡 weak: W0074: The `eqwalizer:ignore` comment suppresses eqwalizer type errors on the following line.
err.
Explanation
This diagnostic reports occurrences of % eqwalizer:ignore comments in the
codebase. These comments suppress eqwalizer type errors on the following line.