use zod for rules ip validation

This commit is contained in:
Milo Schwartz 2025-02-12 21:52:58 -05:00
parent fdf1dfdeba
commit 19273ddbd5
No known key found for this signature in database
3 changed files with 14 additions and 28 deletions

9
eslint.config.js Normal file
View file

@ -0,0 +1,9 @@
// eslint.config.js
export default [
{
rules: {
semi: "error",
"prefer-const": "error"
}
}
];