W0073 - eqwalizer:fixme error suppression
Example
-module(main).
-export([test/1]).
-spec test(atom()) -> ok.
test(A) ->
% eqwalizer:fixme
%%^^^^^^^^^^^^^^^^^ 💡 warning: W0073: Avoid `eqwalizer:fixme`: this comment suppresses eqwalizer type errors on the following line.
err.
Explanation
This diagnostic reports occurrences of % eqwalizer:fixme comments in the
codebase. These comments suppress eqwalizer type errors on the following line.
Avoid using eqwalizer:fixme — fix the underlying type issue instead of
suppressing it.