https://github.com/searchkit/searchkit
Raw File
Tip revision: 66980d0733af317a8af493fef34874b400676997 authored by Joseph McElroy on 15 April 2023, 20:22:56 UTC
add changeset
Tip revision: 66980d0
.eslintrc.js
module.exports = {
  root: true,
  // This tells ESLint to load the config from the package `eslint-config-custom`
  extends: ["custom"],
  settings: {
    next: {
      rootDir: ["apps/*/"],
    },
  },
};
back to top