35[^restrict]: Some use cases for `restriction` lints include:
36 - Strict coding styles (e.g. [`clippy::else_if_without_else`]).
37▶ - Additional restrictions on CI (e.g. [`clippy::todo`]).
38 - Preventing panicking in certain functions (e.g. [`clippy::unwrap_used`]).
39 - Running a lint only on a subset of code (e.g. `#[forbid(clippy::float_arithmetic)]` on a module).
· · ·
40
41[`clippy::else_if_without_else`]: https://rust-lang.github.io/rust-clippy/master/index.html#else_if_without_else
42▶[`clippy::todo`]: https://rust-lang.github.io/rust-clippy/master/index.html#todo
43[`clippy::unwrap_used`]: https://rust-lang.github.io/rust-clippy/master/index.html#unwrap_used
44