Right now Rust Analyzer doesn't give much feedback while writing code. There is no autocompletion and you get only syntax errors. I was thinking about a good first step toward giving more feedback and came to the idea of showing warnings for unused variables. This should be doable by reusing resolve_local_name, which was defined in #98
In the future we will probably want to extend this to detect unused struct fields, types and other stuff. But we need to begin with something.
Right now Rust Analyzer doesn't give much feedback while writing code. There is no autocompletion and you get only syntax errors. I was thinking about a good first step toward giving more feedback and came to the idea of showing warnings for unused variables. This should be doable by reusing
resolve_local_name, which was defined in #98In the future we will probably want to extend this to detect unused struct fields, types and other stuff. But we need to begin with something.