Steep allows you to ignore diagnostics by adding comments to your code.
# Ignoring a range of lines
# steep:ignore:start
foo() # NoMethod is detected, but ignored
# steep:ignore:end
# Ignoring a specific line
foo() # steep:ignore
foo() # steep:ignore NoMethod