|
| 1 | +use command_prelude::*; |
| 2 | + |
| 3 | +use cargo::ops; |
| 4 | + |
| 5 | +pub fn cli() -> App { |
| 6 | + subcommand("fix") |
| 7 | + .about("Automatically fix lint warnings reported by rustc") |
| 8 | + .arg_package_spec( |
| 9 | + "Package(s) to fix", |
| 10 | + "Fix all packages in the workspace", |
| 11 | + "Exclude packages from the fixes", |
| 12 | + ) |
| 13 | + .arg_jobs() |
| 14 | + .arg_targets_all( |
| 15 | + "Fix only this package's library", |
| 16 | + "Fix only the specified binary", |
| 17 | + "Fix all binaries", |
| 18 | + "Fix only the specified example", |
| 19 | + "Fix all examples", |
| 20 | + "Fix only the specified test target", |
| 21 | + "Fix all tests", |
| 22 | + "Fix only the specified bench target", |
| 23 | + "Fix all benches", |
| 24 | + "Fix all targets (lib and bin targets by default)", |
| 25 | + ) |
| 26 | + .arg_release("Fix artifacts in release mode, with optimizations") |
| 27 | + .arg(opt("profile", "Profile to build the selected target for").value_name("PROFILE")) |
| 28 | + .arg_features() |
| 29 | + .arg_target_triple("Fix for the target triple") |
| 30 | + .arg_target_dir() |
| 31 | + .arg_manifest_path() |
| 32 | + .arg_message_format() |
| 33 | + .arg( |
| 34 | + Arg::with_name("broken-code") |
| 35 | + .long("broken-code") |
| 36 | + .help("Fix code even if it already has compiler errors"), |
| 37 | + ) |
| 38 | + .arg( |
| 39 | + Arg::with_name("edition") |
| 40 | + .long("prepare-for") |
| 41 | + .help("Fix warnings in preparation of an edition upgrade") |
| 42 | + .takes_value(true) |
| 43 | + .possible_values(&["2018"]), |
| 44 | + ) |
| 45 | + .arg( |
| 46 | + Arg::with_name("allow-no-vcs") |
| 47 | + .long("allow-no-vcs") |
| 48 | + .help("Fix code even if a VCS was not detected"), |
| 49 | + ) |
| 50 | + .arg( |
| 51 | + Arg::with_name("allow-dirty") |
| 52 | + .long("allow-dirty") |
| 53 | + .help("Fix code even if the working directory is dirty"), |
| 54 | + ) |
| 55 | + .after_help( |
| 56 | + "\ |
| 57 | +This Cargo subcommmand will automatically take rustc's suggestions from |
| 58 | +diagnostics like warnings and apply them to your source code. This is intended |
| 59 | +to help automate tasks that rustc itself already knows how to tell you to fix! |
| 60 | +The `cargo fix` subcommand is also being developed for the Rust 2018 edition |
| 61 | +to provide code the ability to easily opt-in to the new edition without having |
| 62 | +to worry about any breakage. |
| 63 | +
|
| 64 | +Executing `cargo fix` will under the hood execute `cargo check`. Any warnings |
| 65 | +applicable to your crate will be automatically fixed (if possible) and all |
| 66 | +remaining warnings will be displayed when the check process is finished. For |
| 67 | +example if you'd like to prepare for the 2018 edition, you can do so by |
| 68 | +executing: |
| 69 | +
|
| 70 | + cargo fix --prepare-for 2018 |
| 71 | +
|
| 72 | +Note that this is not guaranteed to fix all your code as it only fixes code that |
| 73 | +`cargo check` would otherwise compile. For example unit tests are left out |
| 74 | +from this command, but they can be checked with: |
| 75 | +
|
| 76 | + cargo fix --prepare-for 2018 --all-targets |
| 77 | +
|
| 78 | +which behaves the same as `cargo check --all-targets`. Similarly if you'd like |
| 79 | +to fix code for different platforms you can do: |
| 80 | +
|
| 81 | + cargo fix --prepare-for 2018 --target x86_64-pc-windows-gnu |
| 82 | +
|
| 83 | +or if your crate has optional features: |
| 84 | +
|
| 85 | + cargo fix --prepare-for 2018 --no-default-features --features foo |
| 86 | +
|
| 87 | +If you encounter any problems with `cargo fix` or otherwise have any questions |
| 88 | +or feature requests please don't hesitate to file an issue at |
| 89 | +https://github.com/rust-lang/cargo |
| 90 | +", |
| 91 | + ) |
| 92 | +} |
| 93 | + |
| 94 | +pub fn exec(config: &mut Config, args: &ArgMatches) -> CliResult { |
| 95 | + let ws = args.workspace(config)?; |
| 96 | + let test = match args.value_of("profile") { |
| 97 | + Some("test") => true, |
| 98 | + None => false, |
| 99 | + Some(profile) => { |
| 100 | + let err = format_err!( |
| 101 | + "unknown profile: `{}`, only `test` is \ |
| 102 | + currently supported", |
| 103 | + profile |
| 104 | + ); |
| 105 | + return Err(CliError::new(err, 101)); |
| 106 | + } |
| 107 | + }; |
| 108 | + let mode = CompileMode::Check { test }; |
| 109 | + ops::fix(&ws, &mut ops::FixOptions { |
| 110 | + edition: args.value_of("edition"), |
| 111 | + compile_opts: args.compile_options(config, mode)?, |
| 112 | + allow_dirty: args.is_present("allow-dirty"), |
| 113 | + allow_no_vcs: args.is_present("allow-no-vcs"), |
| 114 | + broken_code: args.is_present("broken-code"), |
| 115 | + })?; |
| 116 | + Ok(()) |
| 117 | +} |
0 commit comments