I noticed that [builtin lint check macro](https://doc.rust-lang.org/reference/attributes/diagnostics.html#lint-check-attributes) is still missing. An example for lint check. ``` #[allow(dead_code)] fn foo() {} ``` There are features in lint check: - [ ] allow, deny, forbid, warn - [ ] lint group - [ ] tool lint It'll be easier to implement this if I get some suggestions from you guys.