rust/clippy_lints
Philip Hayes 7b7e3ca511 Support free functions in disallowed-methods lint
In other words, support:

`disallowed_methods = ["alloc::vec::Vec::new"]` (a free function) in
addition to
`disallowed_methods = ["alloc::vec::Vec::leak"]` (a method).

Improve the documentation to clarify that users must specify the full
qualified path for each disallowed function, which can be confusing for
reexports. Include an example `clippy.toml`.

Simplify the actual lint pass so we can reuse `utils::fn_def_id`.
2021-02-04 11:28:55 -08:00
..
src Support free functions in disallowed-methods lint 2021-02-04 11:28:55 -08:00
Cargo.toml Get rid of regex and lazy_static dependencies 2021-01-30 17:43:00 +01:00
README.md

This crate contains Clippy lints. For the main crate, check GitHub.