style: add prettier and format codebase

This commit is contained in:
Deivid Soto 2026-02-12 15:22:11 +01:00
parent bf459740fe
commit 2f58ac7bf8
18 changed files with 151 additions and 70 deletions

View file

@ -56,15 +56,11 @@ describe("validateApiUrl", () => {
});
it("rejects 0.0.0.0", () => {
expect(() => validateApiUrl("http://0.0.0.0")).toThrow(
"private/reserved",
);
expect(() => validateApiUrl("http://0.0.0.0")).toThrow("private/reserved");
});
it("rejects 10.x.x.x range", () => {
expect(() => validateApiUrl("http://10.0.0.1")).toThrow(
"private/reserved",
);
expect(() => validateApiUrl("http://10.0.0.1")).toThrow("private/reserved");
});
it("rejects 172.16-31.x.x range", () => {