diff --git a/.eslintignore b/.eslintignore new file mode 100644 index 0000000..e3dc335 --- /dev/null +++ b/.eslintignore @@ -0,0 +1,8 @@ +node_modules +.next +dist +build +coverage +docs/ +*.example.ts +*.example.tsx diff --git a/tsconfig.json b/tsconfig.json index e83516c..0970cec 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -37,6 +37,7 @@ "**/*.mts" ], "exclude": [ - "node_modules" + "node_modules", + "docs/**/*" ] }