https://github.com/searchkit/searchkit
Raw File
Tip revision: 6ef6705ed66c0d79d600aa0a97641f3e0ffb1a19 authored by Joseph McElroy on 13 April 2023, 20:46:03 UTC
Custom facet and filter support (#1249)
Tip revision: 6ef6705
.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