blob: 199206d409fd47860a2c4d8ee65dc7b067adfc8f (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
// 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",
},
};
|