mirror of
https://github.com/crate-ci/typos.git
synced 2024-11-25 02:20:58 -05:00
fix(config): Propagate validation errors
When `flatten`ing an `Option`, all errors are silenced, making the value `None`, not just "this field doesn't exist". The easiest way around this was to not use `Option`. Not too confident in all of the changes but tests pass? Fixes #881
This commit is contained in:
parent
632b256901
commit
1b92c0182c
4 changed files with 32 additions and 54 deletions
|
@ -146,14 +146,14 @@ impl FileArgs {
|
||||||
binary: self.binary(),
|
binary: self.binary(),
|
||||||
check_filename: self.check_filename(),
|
check_filename: self.check_filename(),
|
||||||
check_file: self.check_file(),
|
check_file: self.check_file(),
|
||||||
tokenizer: Some(config::TokenizerConfig {
|
tokenizer: config::TokenizerConfig {
|
||||||
unicode: self.unicode(),
|
unicode: self.unicode(),
|
||||||
..Default::default()
|
..Default::default()
|
||||||
}),
|
},
|
||||||
dict: Some(config::DictConfig {
|
dict: config::DictConfig {
|
||||||
locale: self.locale,
|
locale: self.locale,
|
||||||
..Default::default()
|
..Default::default()
|
||||||
}),
|
},
|
||||||
extend_ignore_re: Default::default(),
|
extend_ignore_re: Default::default(),
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -213,7 +213,7 @@ impl TypeEngineConfig {
|
||||||
GlobEngineConfig {
|
GlobEngineConfig {
|
||||||
extend_glob: Vec::new(),
|
extend_glob: Vec::new(),
|
||||||
engine: EngineConfig {
|
engine: EngineConfig {
|
||||||
dict: Some(DictConfig {
|
dict: DictConfig {
|
||||||
extend_identifiers: dict_config
|
extend_identifiers: dict_config
|
||||||
.ignore_idents
|
.ignore_idents
|
||||||
.iter()
|
.iter()
|
||||||
|
@ -225,7 +225,7 @@ impl TypeEngineConfig {
|
||||||
.map(|key| ((*key).into(), (*key).into()))
|
.map(|key| ((*key).into(), (*key).into()))
|
||||||
.collect(),
|
.collect(),
|
||||||
..Default::default()
|
..Default::default()
|
||||||
}),
|
},
|
||||||
..Default::default()
|
..Default::default()
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
|
@ -280,9 +280,9 @@ pub struct EngineConfig {
|
||||||
/// Verifying spelling in files.
|
/// Verifying spelling in files.
|
||||||
pub check_file: Option<bool>,
|
pub check_file: Option<bool>,
|
||||||
#[serde(flatten)]
|
#[serde(flatten)]
|
||||||
pub tokenizer: Option<TokenizerConfig>,
|
pub tokenizer: TokenizerConfig,
|
||||||
#[serde(flatten)]
|
#[serde(flatten)]
|
||||||
pub dict: Option<DictConfig>,
|
pub dict: DictConfig,
|
||||||
#[serde(with = "serde_regex")]
|
#[serde(with = "serde_regex")]
|
||||||
pub extend_ignore_re: Vec<regex::Regex>,
|
pub extend_ignore_re: Vec<regex::Regex>,
|
||||||
}
|
}
|
||||||
|
@ -294,12 +294,8 @@ impl EngineConfig {
|
||||||
binary: Some(empty.binary()),
|
binary: Some(empty.binary()),
|
||||||
check_filename: Some(empty.check_filename()),
|
check_filename: Some(empty.check_filename()),
|
||||||
check_file: Some(empty.check_file()),
|
check_file: Some(empty.check_file()),
|
||||||
tokenizer: Some(
|
tokenizer: TokenizerConfig::from_defaults(),
|
||||||
empty
|
dict: DictConfig::from_defaults(),
|
||||||
.tokenizer
|
|
||||||
.unwrap_or_else(TokenizerConfig::from_defaults),
|
|
||||||
),
|
|
||||||
dict: Some(empty.dict.unwrap_or_else(DictConfig::from_defaults)),
|
|
||||||
extend_ignore_re: Default::default(),
|
extend_ignore_re: Default::default(),
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -314,22 +310,8 @@ impl EngineConfig {
|
||||||
if let Some(source) = source.check_file {
|
if let Some(source) = source.check_file {
|
||||||
self.check_file = Some(source);
|
self.check_file = Some(source);
|
||||||
}
|
}
|
||||||
if let Some(source) = source.tokenizer.as_ref() {
|
self.tokenizer.update(&source.tokenizer);
|
||||||
let mut tokenizer = None;
|
self.dict.update(&source.dict);
|
||||||
std::mem::swap(&mut tokenizer, &mut self.tokenizer);
|
|
||||||
let mut tokenizer = tokenizer.unwrap_or_default();
|
|
||||||
tokenizer.update(source);
|
|
||||||
let mut tokenizer = Some(tokenizer);
|
|
||||||
std::mem::swap(&mut tokenizer, &mut self.tokenizer);
|
|
||||||
}
|
|
||||||
if let Some(source) = source.dict.as_ref() {
|
|
||||||
let mut dict = None;
|
|
||||||
std::mem::swap(&mut dict, &mut self.dict);
|
|
||||||
let mut dict = dict.unwrap_or_default();
|
|
||||||
dict.update(source);
|
|
||||||
let mut dict = Some(dict);
|
|
||||||
std::mem::swap(&mut dict, &mut self.dict);
|
|
||||||
}
|
|
||||||
self.extend_ignore_re
|
self.extend_ignore_re
|
||||||
.extend(source.extend_ignore_re.iter().cloned());
|
.extend(source.extend_ignore_re.iter().cloned());
|
||||||
}
|
}
|
||||||
|
@ -659,8 +641,8 @@ check-file = true
|
||||||
GlobEngineConfig {
|
GlobEngineConfig {
|
||||||
extend_glob: vec!["*.po".into()],
|
extend_glob: vec!["*.po".into()],
|
||||||
engine: EngineConfig {
|
engine: EngineConfig {
|
||||||
tokenizer: Some(TokenizerConfig::default()),
|
tokenizer: TokenizerConfig::default(),
|
||||||
dict: Some(DictConfig::default()),
|
dict: DictConfig::default(),
|
||||||
check_file: Some(true),
|
check_file: Some(true),
|
||||||
..Default::default()
|
..Default::default()
|
||||||
},
|
},
|
||||||
|
@ -687,13 +669,13 @@ inout = "inout"
|
||||||
GlobEngineConfig {
|
GlobEngineConfig {
|
||||||
extend_glob: vec!["*.shader".into(), "*.cginc".into()],
|
extend_glob: vec!["*.shader".into(), "*.cginc".into()],
|
||||||
engine: EngineConfig {
|
engine: EngineConfig {
|
||||||
tokenizer: Some(TokenizerConfig::default()),
|
tokenizer: TokenizerConfig::default(),
|
||||||
dict: Some(DictConfig {
|
dict: DictConfig {
|
||||||
extend_words: maplit::hashmap! {
|
extend_words: maplit::hashmap! {
|
||||||
"inout".into() => "inout".into(),
|
"inout".into() => "inout".into(),
|
||||||
},
|
},
|
||||||
..Default::default()
|
..Default::default()
|
||||||
}),
|
},
|
||||||
..Default::default()
|
..Default::default()
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
|
|
|
@ -227,14 +227,13 @@ impl<'s> ConfigEngine<'s> {
|
||||||
let check_filename = engine.check_filename();
|
let check_filename = engine.check_filename();
|
||||||
let check_file = engine.check_file();
|
let check_file = engine.check_file();
|
||||||
let crate::config::EngineConfig {
|
let crate::config::EngineConfig {
|
||||||
tokenizer,
|
tokenizer: mut tokenizer_config,
|
||||||
dict,
|
dict: mut dict_config,
|
||||||
extend_ignore_re,
|
extend_ignore_re,
|
||||||
..
|
..
|
||||||
} = engine;
|
} = engine;
|
||||||
let tokenizer_config =
|
tokenizer_config.update(&crate::config::TokenizerConfig::from_defaults());
|
||||||
tokenizer.unwrap_or_else(crate::config::TokenizerConfig::from_defaults);
|
dict_config.update(&crate::config::DictConfig::from_defaults());
|
||||||
let dict_config = dict.unwrap_or_else(crate::config::DictConfig::from_defaults);
|
|
||||||
|
|
||||||
if !tokenizer_config.ignore_hex() {
|
if !tokenizer_config.ignore_hex() {
|
||||||
log::warn!("`ignore-hex` is deprecated");
|
log::warn!("`ignore-hex` is deprecated");
|
||||||
|
|
|
@ -1,18 +1,15 @@
|
||||||
bin.name = "typos"
|
bin.name = "typos"
|
||||||
status.code = 2
|
status.code = 78
|
||||||
stdin = ""
|
stdin = ""
|
||||||
stdout = """
|
stdout = ""
|
||||||
error: `hello` should be `goodbye`
|
stderr = """
|
||||||
--> ./file.ignore:1:1
|
TOML parse error at line 7, column 1
|
||||||
|
|
|
||||||
1 | hello
|
|
||||||
| ^^^^^
|
|
||||||
|
|
|
||||||
error: `hello` should be `goodbye`
|
|
||||||
--> ./file.fail:1:1
|
|
||||||
|
|
|
||||||
1 | hello
|
|
||||||
| ^^^^^
|
|
||||||
|
|
|
|
||||||
|
7 | [type.ignore]
|
||||||
|
| ^[..]
|
||||||
|
regex parse error:
|
||||||
|
(he.*
|
||||||
|
^
|
||||||
|
error: unclosed group
|
||||||
|
|
||||||
"""
|
"""
|
||||||
stderr = ""
|
|
||||||
|
|
Loading…
Reference in a new issue