Skip to content

Latest commit

 

History

History
20 lines (13 loc) · 317 Bytes

ignore.md

File metadata and controls

20 lines (13 loc) · 317 Bytes

Ignore diagnostics

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