You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Using VS Code and the rust-analyzer extension there are numerous "dead code", and "unused import" warnings being detected.
Resolving these will not only help to implement functionality, but will also go a long way towards cleaning up the visual clutter when running tests and builds.
There may be instances, such as 'id' and 'csrf', where implementing a "TODO" function would be acceptable for the interim.
On the other hand there are still numerous uses of e when it comes to error handling which should be implemented sooner than later.
The text was updated successfully, but these errors were encountered:
Almost everything that I have seen so far had a purpose when originally written. If that purpose is not immediately apparent, or easy to implement then create a way for future devs to quickly identify it :)
Using VS Code and the
rust-analyzer
extension there are numerous "dead code", and "unused import" warnings being detected.Resolving these will not only help to implement functionality, but will also go a long way towards cleaning up the visual clutter when running tests and builds.
There may be instances, such as 'id' and 'csrf', where implementing a "TODO" function would be acceptable for the interim.
On the other hand there are still numerous uses of
e
when it comes to error handling which should be implemented sooner than later.The text was updated successfully, but these errors were encountered: