UNPKG

create-jaydee-app

Version:

This is a project created with Create Jaydee App.

55 lines (51 loc) 1.44 kB
/** @type {import("eslint").Linter.Config} */ const config = { parser: "@typescript-eslint/parser", parserOptions: { project: true, }, plugins: ["@typescript-eslint", "drizzle"], extends: [ "next/core-web-vitals", "plugin:@typescript-eslint/recommended-type-checked", "plugin:@typescript-eslint/stylistic-type-checked", ], rules: { // These opinionated rules are enabled in stylistic-type-checked above. // Feel free to reconfigure them to your own preference. "@typescript-eslint/array-type": "off", "@typescript-eslint/consistent-type-definitions": "off", "@typescript-eslint/consistent-type-imports": [ "warn", { prefer: "type-imports", fixStyle: "inline-type-imports", }, ], "@typescript-eslint/no-unused-vars": [ "warn", { argsIgnorePattern: "^_", caughtErrorsIgnorePattern: "^_" }, ], "@typescript-eslint/no-misused-promises": [ 2, { checksVoidReturn: { attributes: false }, }, ], "drizzle/enforce-delete-with-where": [ "error", { drizzleObjectName: ["db", "ctx.db", "tx"], }, ], "drizzle/enforce-update-with-where": [ "error", { drizzleObjectName: ["db", "ctx.db", "tx"], }, ], "@next/next/no-img-element": "off", }, }; // eslint-disable-next-line @typescript-eslint/no-unsafe-assignment module.exports = config;