-
Notifications
You must be signed in to change notification settings - Fork 22
Speed improvements for cargo based linting #29
Comments
I'll add that because
The main issue can be solved if The side effects (and issue #16) can be solved by rate-limiting linting such that only one lint can be running at any time. This is probably an issue with the Cargo issue for build only: rust-lang/cargo#1891 |
Another way around this is |
PR #43 adds an option for cargo check to linter-rust. :-) |
Hurray! |
This one should probably be closed. |
Instead of using
cargo build
to generate the lint messages, it might make sense to usecargo rustc
in combination with-Z no-trans
, as it is already done withrustc
based linting. The downside of this approach is, that one has to specify which target to build, .i.e.,--lib
,--bin NAME
, etc, which might require multiple runs to really get all messages.The text was updated successfully, but these errors were encountered: