feat: enable eslint in ci

This commit is contained in:
Stavros
2025-10-31 16:13:51 +02:00
parent 330c7aa8f1
commit 5f7e89c330
4 changed files with 22 additions and 5 deletions

View File

@@ -9,7 +9,7 @@ export const isValidUrl = (url: string) => {
try {
new URL(url);
return true;
} catch (e) {
} catch {
return false;
}
};