diff --git a/packages/db/eslint.config.mjs b/packages/db/eslint.config.mjs new file mode 100644 index 0000000..c1c3cfb --- /dev/null +++ b/packages/db/eslint.config.mjs @@ -0,0 +1,4 @@ +import { config } from "@repo/eslint-config/react"; + +/** @type {import("eslint").Linter.Config} */ +export default config; diff --git a/packages/db/package.json b/packages/db/package.json index 40e1af4..7ccd56d 100644 --- a/packages/db/package.json +++ b/packages/db/package.json @@ -10,6 +10,7 @@ "./index.ts": "./src/index.ts" }, "scripts": { + "lint": "eslint . --ext .ts,.tsx", "db:check": "npx drizzle-kit check", "db:generate": "npx drizzle-kit generate", "db:migrate": "npx drizzle-kit migrate",