aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/examples/basic/.eslintrc.js
blob: 5b999efa470b056e329b4c23a73904e0794bdc2f (plain) (blame)
1
2
3
4
5
6
7
8
9
10
module.exports = {
  root: true,
  // This tells ESLint to load the config from the package `eslint-config-custom`
  extends: ["custom"],
  settings: {
    next: {
      rootDir: ["apps/*/"],
    },
  },
};