Fix clippy warnings and make them all errors

This commit is contained in:
Dustin J. Mitchell
2020-12-24 17:39:49 +00:00
parent 161c38807d
commit 8989b0d2e3
12 changed files with 24 additions and 23 deletions

View File

@@ -4,7 +4,7 @@ use termcolor::{ColorSpec, WriteColor};
pub(crate) fn execute<W: WriteColor>(w: &mut W) -> Fallible<()> {
write!(w, "TaskChampion ")?;
w.set_color(ColorSpec::new().set_bold(true))?;
write!(w, "{}\n", env!("CARGO_PKG_VERSION"))?;
writeln!(w, "{}", env!("CARGO_PKG_VERSION"))?;
w.reset()?;
Ok(())
}