pub fn load(path: &Path) -> Result<Vec<NewIssue>>Expand description
Load persistent issues from path.
- If
pathdoes not exist, returnsOk(vec![])(first-run friendly). - If the file is unreadable or the YAML is malformed, logs a warning and
returns
Ok(vec![])— the IDE continues with an empty persistent list.