๐Ÿ“ฆ Nithin1506200 / monorepo-template

๐Ÿ“„ .eslintrc.js ยท 11 lines
1
2
3
4
5
6
7
8
9
10
11// 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,
  },
};