harn-parser 0.9.6

Parser, AST, and type checker for the Harn programming language
Documentation
1
2
3
4
5
6
7
8
# HARN-LNT-014 — unused variable lint

## How to fix

- Use the `_` discard binding for side-effect-only local expressions, for
  example `let _ = cleanup()`.
- Apply the lint's auto-fix where one is offered (`harn lint --fix`).
- Suppress the lint with an attribute only when the surrounding code is intentionally non-idiomatic.