pub async fn run(config: Config, fix: bool) -> Result<Result<(), Failure>>Expand description
Run the tool for the given config.
Ok(Ok(())means successful.Ok(Err(failure))means the run was successful, but issues are found.Err(e)means the run itself was not successful.