mirror of
https://github.com/crate-ci/typos.git
synced 2024-11-22 09:01:04 -05:00
fix(config): Provide all field defaults
This commit is contained in:
parent
ecb32a674a
commit
13a93ee8d1
2 changed files with 39 additions and 1 deletions
|
@ -118,6 +118,13 @@ impl Config {
|
||||||
Ok(content)
|
Ok(content)
|
||||||
}
|
}
|
||||||
|
|
||||||
|
pub fn from_defaults() -> Self {
|
||||||
|
Self {
|
||||||
|
files: Walk::from_defaults(),
|
||||||
|
default: FileConfig::from_defaults(),
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
pub fn derive(cwd: &std::path::Path) -> Result<Self, anyhow::Error> {
|
pub fn derive(cwd: &std::path::Path) -> Result<Self, anyhow::Error> {
|
||||||
if let Some(path) = find_project_file(cwd, &["typos.toml", "_typos.toml", ".typos.toml"]) {
|
if let Some(path) = find_project_file(cwd, &["typos.toml", "_typos.toml", ".typos.toml"]) {
|
||||||
Self::from_file(&path)
|
Self::from_file(&path)
|
||||||
|
@ -160,6 +167,19 @@ pub struct Walk {
|
||||||
}
|
}
|
||||||
|
|
||||||
impl Walk {
|
impl Walk {
|
||||||
|
pub fn from_defaults() -> Self {
|
||||||
|
let empty = Self::default();
|
||||||
|
Self {
|
||||||
|
binary: Some(empty.binary()),
|
||||||
|
ignore_hidden: Some(empty.ignore_hidden()),
|
||||||
|
ignore_files: Some(true),
|
||||||
|
ignore_dot: Some(empty.ignore_dot()),
|
||||||
|
ignore_vcs: Some(empty.ignore_vcs()),
|
||||||
|
ignore_global: Some(empty.ignore_global()),
|
||||||
|
ignore_parent: Some(empty.ignore_parent()),
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
pub fn update(&mut self, source: &dyn WalkSource) {
|
pub fn update(&mut self, source: &dyn WalkSource) {
|
||||||
if let Some(source) = source.binary() {
|
if let Some(source) = source.binary() {
|
||||||
self.binary = Some(source);
|
self.binary = Some(source);
|
||||||
|
@ -264,6 +284,22 @@ pub struct FileConfig {
|
||||||
}
|
}
|
||||||
|
|
||||||
impl FileConfig {
|
impl FileConfig {
|
||||||
|
pub fn from_defaults() -> Self {
|
||||||
|
let empty = Self::default();
|
||||||
|
FileConfig {
|
||||||
|
check_filename: Some(empty.check_filename()),
|
||||||
|
check_file: Some(empty.check_file()),
|
||||||
|
ignore_hex: Some(empty.ignore_hex()),
|
||||||
|
identifier_leading_digits: Some(empty.identifier_leading_digits()),
|
||||||
|
identifier_leading_chars: Some(empty.identifier_leading_chars().to_owned()),
|
||||||
|
identifier_include_digits: Some(empty.identifier_include_digits()),
|
||||||
|
identifier_include_chars: Some(empty.identifier_include_chars().to_owned()),
|
||||||
|
locale: Some(empty.locale()),
|
||||||
|
extend_identifiers: Default::default(),
|
||||||
|
extend_words: Default::default(),
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
pub fn update(&mut self, source: &dyn FileSource) {
|
pub fn update(&mut self, source: &dyn FileSource) {
|
||||||
if let Some(source) = source.check_filename() {
|
if let Some(source) = source.check_filename() {
|
||||||
self.check_filename = Some(source);
|
self.check_filename = Some(source);
|
||||||
|
|
|
@ -60,7 +60,9 @@ fn run_dump_config(args: &args::Args, output_path: &std::path::Path) -> proc_exi
|
||||||
};
|
};
|
||||||
|
|
||||||
let config = load_config(cwd, &args).with_code(proc_exit::Code::CONFIG_ERR)?;
|
let config = load_config(cwd, &args).with_code(proc_exit::Code::CONFIG_ERR)?;
|
||||||
let output = toml::to_string_pretty(&config).with_code(proc_exit::Code::FAILURE)?;
|
let mut defaulted_config = config::Config::from_defaults();
|
||||||
|
defaulted_config.update(&config);
|
||||||
|
let output = toml::to_string_pretty(&defaulted_config).with_code(proc_exit::Code::FAILURE)?;
|
||||||
std::fs::write(output_path, &output)?;
|
std::fs::write(output_path, &output)?;
|
||||||
|
|
||||||
Ok(())
|
Ok(())
|
||||||
|
|
Loading…
Reference in a new issue