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