forked from bai/curriculum-project-hub
chore: restore checker CI gate
This commit is contained in:
@@ -737,7 +737,11 @@ fn parse_target(name: String, value: toml::Value, diags: &mut Vec<Diagnostic>) -
|
||||
/// A well-formed but empty `covers = []` yields `Some(vec![])`: a target that
|
||||
/// explicitly renders no kind (every used kind then draws a `renderIgnored`
|
||||
/// warning) — distinct from an absent key.
|
||||
fn parse_covers(name: &str, value: toml::Value, diags: &mut Vec<Diagnostic>) -> Option<Vec<String>> {
|
||||
fn parse_covers(
|
||||
name: &str,
|
||||
value: toml::Value,
|
||||
diags: &mut Vec<Diagnostic>,
|
||||
) -> Option<Vec<String>> {
|
||||
let items = match value {
|
||||
toml::Value::Array(items) => items,
|
||||
_ => {
|
||||
|
||||
Reference in New Issue
Block a user