23 lines
496 B
JavaScript
23 lines
496 B
JavaScript
import baseConfig from "@mintel/eslint-config";
|
|
import { nextConfig } from "@mintel/eslint-config/next";
|
|
|
|
export default [
|
|
{
|
|
ignores: [
|
|
"packages/cms-infra/extensions/**",
|
|
"packages/customer-manager/index.js",
|
|
"**/*.db",
|
|
"**/build/**",
|
|
],
|
|
},
|
|
...baseConfig,
|
|
...nextConfig.map((config) => ({
|
|
...config,
|
|
files: [
|
|
"apps/sample-website/**/*.{ts,tsx}",
|
|
"packages/gatekeeper/**/*.{ts,tsx}",
|
|
"../klz-2026/**/*.{ts,tsx}",
|
|
],
|
|
})),
|
|
];
|