Skip to content

Commit

Permalink
rust-project: Don't use incremental actions for clippy
Browse files Browse the repository at this point in the history
Summary: D59887013 seems to have broken clippy warnings, although it's unclear to me why. Revert that change so we continue to offer clippy warnings in the IDE.

Reviewed By: Imxset21

Differential Revision: D60558322

fbshipit-source-id: 954b4f1093452bbbd474a4031e4b790bcf77355d
  • Loading branch information
Wilfred authored and facebook-github-bot committed Aug 1, 2024
1 parent 4802117 commit c9fa654
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion prelude/rust/rust-analyzer/check.bxl
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ def check_targets_impl(ctx: BxlContext) -> None:
for a in analysis:
o = a.providers()[RustcExtraOutputsInfo]
if ctx.cli_args.use_clippy:
artifacts.append(o.clippy_incr.diag_json)
artifacts.append(o.clippy.diag_json)
else:
artifacts.append(o.metadata_incr.diag_json)

Expand Down

0 comments on commit c9fa654

Please sign in to comment.