mirror of
https://github.com/Jeuners/ECC.git
synced 2026-09-09 15:02:30 +02:00
fix: use readFile utility in hooks and add pattern type safety
- Replace raw fs.readFileSync with readFile() from utils in check-console-log.js and post-edit-console-warn.js to eliminate TOCTOU race conditions (file deleted between existsSync and read) - Remove redundant existsSync in post-edit-format.js (exec already handles missing files via its catch block) - Resolve path upfront in post-edit-typecheck.js before tsconfig walk - Add type guard in getGitModifiedFiles() to skip non-string and empty patterns before regex compilation
This commit is contained in:
parent
911d38f686
commit
e7b5c62eb7
5 changed files with 14 additions and 9 deletions
|
|
@ -366,6 +366,7 @@ function getGitModifiedFiles(patterns = []) {
|
|||
// Pre-compile patterns, skipping invalid ones
|
||||
const compiled = [];
|
||||
for (const pattern of patterns) {
|
||||
if (typeof pattern !== 'string' || pattern.length === 0) continue;
|
||||
try {
|
||||
compiled.push(new RegExp(pattern));
|
||||
} catch {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue