fix: resolve Windows CI failures and markdown lint (#667)

- Replace node -e with temp file execution in validator tests to avoid
  Windows shebang parsing failures (node -e cannot handle scripts that
  originally contained #!/usr/bin/env node shebangs)
- Remove duplicate blank line in skills/rust-patterns/SKILL.md (MD012)
This commit is contained in:
Affaan Mustafa
2026-03-20 00:29:17 -07:00
committed by GitHub
parent cfb3370df8
commit 6836e9875d
2 changed files with 32 additions and 44 deletions

View File

@@ -43,7 +43,6 @@ fn process_bad(data: &Vec<u8>) -> usize {
}
```
### Use `Cow` for Flexible Ownership
```rust