chore: Enable "curly" rule to avoid single-statement if confusion/errors.

This commit is contained in:
cpojer
2026-01-31 16:19:20 +09:00
parent 009b16fab8
commit 5ceff756e1
1266 changed files with 27871 additions and 9393 deletions

View File

@@ -4,21 +4,41 @@ const QUOTE_CHARS = /["']/;
const BARE_NAME_PATTERN = /^[A-Za-z0-9._+-]+$/;
function isLikelyPath(value: string): boolean {
if (value.startsWith(".") || value.startsWith("~")) return true;
if (value.includes("/") || value.includes("\\")) return true;
if (value.startsWith(".") || value.startsWith("~")) {
return true;
}
if (value.includes("/") || value.includes("\\")) {
return true;
}
return /^[A-Za-z]:[\\/]/.test(value);
}
export function isSafeExecutableValue(value: string | null | undefined): boolean {
if (!value) return false;
if (!value) {
return false;
}
const trimmed = value.trim();
if (!trimmed) return false;
if (trimmed.includes("\0")) return false;
if (CONTROL_CHARS.test(trimmed)) return false;
if (SHELL_METACHARS.test(trimmed)) return false;
if (QUOTE_CHARS.test(trimmed)) return false;
if (!trimmed) {
return false;
}
if (trimmed.includes("\0")) {
return false;
}
if (CONTROL_CHARS.test(trimmed)) {
return false;
}
if (SHELL_METACHARS.test(trimmed)) {
return false;
}
if (QUOTE_CHARS.test(trimmed)) {
return false;
}
if (isLikelyPath(trimmed)) return true;
if (trimmed.startsWith("-")) return false;
if (isLikelyPath(trimmed)) {
return true;
}
if (trimmed.startsWith("-")) {
return false;
}
return BARE_NAME_PATTERN.test(trimmed);
}