From 33d8868d3520b53b8eebd1b492bde01dc8a211cb Mon Sep 17 00:00:00 2001
From: Kei Kamikawa <Code-Hex@users.noreply.github.com>
Date: Sat, 9 Dec 2023 20:52:34 +0900
Subject: [PATCH 1/2] update ignore patterns in .eslintrc.json and
 .prettierignore

---
 .eslintrc.json  | 4 +++-
 .prettierignore | 1 +
 2 files changed, 4 insertions(+), 1 deletion(-)

diff --git a/.eslintrc.json b/.eslintrc.json
index ea495f09..93e84f9d 100644
--- a/.eslintrc.json
+++ b/.eslintrc.json
@@ -43,6 +43,8 @@
   "ignorePatterns": [
     "dist",
     "node_modules",
-    "example"
+    "example",
+    "vitest.config.ts",
+    "tsconfig.json"
   ]
 }
\ No newline at end of file
diff --git a/.prettierignore b/.prettierignore
index 16fa69f8..61a92a3a 100644
--- a/.prettierignore
+++ b/.prettierignore
@@ -5,3 +5,4 @@ package-lock.json
 .DS_Store
 tsconfig.tsbuildinfo
 example
+vitest.config.ts
\ No newline at end of file

From 32dabf229fafa9a435c691d3293c52d306783e68 Mon Sep 17 00:00:00 2001
From: Kei Kamikawa <Code-Hex@users.noreply.github.com>
Date: Sat, 9 Dec 2023 20:53:08 +0900
Subject: [PATCH 2/2] remove preinstall script from package.json

---
 package.json | 1 -
 1 file changed, 1 deletion(-)

diff --git a/package.json b/package.json
index 6d21ea29..8ecc0c11 100644
--- a/package.json
+++ b/package.json
@@ -15,7 +15,6 @@
     "README.md"
   ],
   "scripts": {
-    "preinstall": "npx only-allow pnpm",
     "type-check": "tsc --noEmit",
     "type-check:yup": "tsc --strict --noEmit example/yup/schemas.ts",
     "type-check:zod": "tsc --strict --noEmit example/zod/schemas.ts",