chore: enforce brackets for if clause and for/while loops

This commit is contained in:
Ilia Mashkov
2026-04-17 13:05:36 +03:00
parent cfaff46d59
commit 12e8bc0a89
25 changed files with 213 additions and 70 deletions
@@ -18,7 +18,9 @@ export function smoothScroll(node: HTMLAnchorElement) {
event.preventDefault();
const hash = node.getAttribute('href');
if (!hash || hash === '#') return;
if (!hash || hash === '#') {
return;
}
const targetElement = document.querySelector(hash);
+3 -1
View File
@@ -35,7 +35,9 @@ export function throttle<T extends (...args: any[]) => any>(
fn(...args);
} else {
// Schedule for end of wait period (trailing edge)
if (timeoutId) clearTimeout(timeoutId);
if (timeoutId) {
clearTimeout(timeoutId);
}
timeoutId = setTimeout(() => {
lastCall = Date.now();
fn(...args);