Enable no-empty lint

This commit is contained in:
valadaptive
2023-12-02 09:14:48 -05:00
parent 367f3dba27
commit 60ac1aa1c7
4 changed files with 11 additions and 6 deletions

View File

@ -66,7 +66,9 @@ export function formatKoboldUrl(value) {
url.pathname = '/api';
}
return url.toString();
} catch { } // Just using URL as a validation check
} catch {
// Just using URL as a validation check
}
return null;
}