supermemory/.eslintrc.js
Dhravya Shah a3f551e557 merged
2024-07-28 10:58:22 -07:00

13 lines
369 B
JavaScript

// This configuration only applies to the package manager root.
/** @type {import("eslint").Linter.Config} */
module.exports = {
ignorePatterns: ["apps/**", "packages/**"],
extends: ["@repo/eslint-config/library.js"],
parser: "@typescript-eslint/parser",
parserOptions: {
project: true,
},
rules: {
"@typescript-eslint/consistent-type-imports": "off",
},
};