mirror of
https://github.com/crate-ci/typos.git
synced 2024-12-24 08:32:10 -05:00
style: Clippy
This commit is contained in:
parent
8f365ee155
commit
aa21439502
2 changed files with 2 additions and 5 deletions
|
@ -141,7 +141,6 @@ impl FileArgs {
|
||||||
locale: self.locale,
|
locale: self.locale,
|
||||||
..Default::default()
|
..Default::default()
|
||||||
}),
|
}),
|
||||||
..Default::default()
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -241,7 +240,6 @@ impl WalkArgs {
|
||||||
ignore_vcs: self.ignore_vcs(),
|
ignore_vcs: self.ignore_vcs(),
|
||||||
ignore_global: self.ignore_global(),
|
ignore_global: self.ignore_global(),
|
||||||
ignore_parent: self.ignore_parent(),
|
ignore_parent: self.ignore_parent(),
|
||||||
..Default::default()
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -208,14 +208,13 @@ impl<'s> ConfigEngine<'s> {
|
||||||
let dict = self.dict.intern(dict);
|
let dict = self.dict.intern(dict);
|
||||||
let tokenizer = self.tokenizer.intern(tokenizer);
|
let tokenizer = self.tokenizer.intern(tokenizer);
|
||||||
|
|
||||||
let file = FileConfig {
|
FileConfig {
|
||||||
check_filenames: check_filename,
|
check_filenames: check_filename,
|
||||||
check_files: check_file,
|
check_files: check_file,
|
||||||
binary,
|
binary,
|
||||||
tokenizer,
|
tokenizer,
|
||||||
dict,
|
dict,
|
||||||
};
|
}
|
||||||
file
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue