E0003: indentation does not match enclosing block
Generated from rellum-diagnostics/src/db.rs.
Explanation
When a line dedents, its indentation must match a previous indentation level. A partial dedent would leave the parser between two block levels with no clear owner.
Common causes
- dedenting to a column that was never opened
- using inconsistent numbers of spaces across sibling lines
- mixing editor indentation widths in one file
Canonical fixes
- dedent to the exact column of the enclosing block
- reformat the block with one consistent indentation width