monorepo/.eslintrc.js

11 lines
316 B
JavaScript
Raw Normal View History

2024-06-25 21:59:50 +08:00
// This configuration only applies to the package manager root.
/** @type {import("eslint").Linter.Config} */
module.exports = {
ignorePatterns: ["apps/**", "packages/**"],
extends: [require.resolve('@3rapp/core/eslint/lib')],
parser: "@typescript-eslint/parser",
parserOptions: {
project: true,
},
};