Skip to main content

W0074 - eqwalizer:ignore error suppression

Example

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

-spec test(atom()) -> ok.
test(A) ->
% eqwalizer:ignore
%%^^^^^^^^^^^^^^^^^ 💡 warning: W0074: Avoid `eqwalizer:ignore`: this 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.

Avoid using eqwalizer:ignore — fix the underlying type issue instead of suppressing it.

See also