fenghuo/.eslintrc.js

11 lines
306 B
JavaScript
Raw Permalink Normal View History

2025-02-18 15:35:03 +08:00
// This configuration only applies to the package manager root.
/** @type {import("eslint").Linter.Config} */
module.exports = {
ignorePatterns: ["apps/**", "packages/**"],
2025-05-26 19:56:34 +08:00
extends: ["@repo/eslint-config/library.js"],
2025-02-18 15:35:03 +08:00
parser: "@typescript-eslint/parser",
parserOptions: {
project: true,
},
}