Skip to content

Commit

Permalink
Fix lint errors
Browse files Browse the repository at this point in the history
  • Loading branch information
IogaMaster committed Sep 28, 2023
1 parent f24eb00 commit f6b88af
Showing 1 changed file with 2 additions and 8 deletions.
10 changes: 2 additions & 8 deletions crates/nufmt_cli/src/main.rs
Original file line number Diff line number Diff line change
@@ -1,16 +1,10 @@
use clap::Parser;

use log::{error, info, trace};
use std::{
fs,
io::Write,
path::{Path, PathBuf},
};
use log::trace;
use std::{io::Write, path::PathBuf};

use nufmt::{config::Config, format_directory, format_string};

use crate::utils::*;

/// the CLI signature of the `nufmt` executable.
#[derive(Parser)]
#[command(author, version, about)]
Expand Down

0 comments on commit f6b88af

Please sign in to comment.