Alex Macleod
Alex Macleod
Version: `ZNC 1.7.x-git-536-0268f6d` An example: ``` CAP LS :irc.znc.in CAP unknown-nick LS :batch cap-notify echo-message multi-prefix server-time userhost-in-names znc.in/batch znc.in/self-message znc.in/server-time-iso CAP REQ :userhost-in-names :irc.znc.in CAP unknown-nick ACK :userhost-in-names CAP...
changelog: Migrates write.rs from a pre expansion pass to a late pass - Macros are now identified by diagnostic items, so will no longer lint user defined macros named, e.g....
Looking at the GitHub docs it doesn't seem like it's possible to make teams visible to non org members sadly e.g. https://github.com/orgs/rustwasm/teams/core/members is a 404 for users not a member...
In clippy if you add `check()` somewhere in `clippy_lints` where the function isn't found (e.g. in `clippy_lints/src/lib.rs`) the note will tell you about all the inaccessible functions called `check` of...
r? @matthiaskrgr This just adds the mode without changing how a regular run works Takes a fair bit longer to run than a `-j4` or regular run ``` cargo lintcheck...
Closes #7790 `clippy_utils::def_path_res` already resolved macro definitions which is nice, it just needed a tweak to be able to disambiguate e.g. `std::vec` the module & `std::vec` the macro, and `serde::Serialize`...
changelog: new lint: [`needless_maybe_sized`] Closes #10600
Partially addresses #12729 This still doesn't do any workspace resolution stuff, so it will not catch any virtual workspaces or conflicts from inherited definitions. But while we're parsing the `Cargo.toml`...
Fixes #11886 The initial way I thought of was a little gross so I never opened a PR for it, I thought of a nicer way today that no longer...