2025-01-28 14:01:02 +00:00
|
|
|
// This configuration only applies to the package manager root.
|
|
|
|
|
/** @type {import("eslint").Linter.Config} */
|
|
|
|
|
module.exports = {
|
2025-04-22 15:09:57 +00:00
|
|
|
ignorePatterns: ["apps/**", "packages/**", "libs/**"],
|
|
|
|
|
extends: ["@repo/eslint-config"],
|
2025-01-28 14:01:02 +00:00
|
|
|
parser: "@typescript-eslint/parser",
|
|
|
|
|
parserOptions: {
|
|
|
|
|
project: true,
|
|
|
|
|
},
|
|
|
|
|
};
|