Closed
Description
Hey, I would love to add a few lints to that which are fairly super pedantic. We use them (or rather a shell script that checks for them :P) at the moment to ensure error handling/non crashy behaviour in our codebase they sum up to:
- no unwrap
- no unimplemented
- no unreachable
- no panic
- no let _ on results.
- no expect
- no dbg!
- no std::process::exit
- no bracket access
[....]
but before I go ahead I'd like to get an opinion of those would be accepted?