Skip to main content

W0073 - eqwalizer:fixme error suppression

Example

-module(main).
-export([test/1]).

-spec test(atom()) -> ok.
test(A) ->
% eqwalizer:fixme
%%^^^^^^^^^^^^^^^^^ 💡 weak: W0073: The `eqwalizer:fixme` 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.

See also