Some checks failed
ci/woodpecker/push/web Pipeline failed
Co-authored-by: Jason Woltje <jason@diversecanvas.com> Co-committed-by: Jason Woltje <jason@diversecanvas.com>
19 lines
385 B
JavaScript
19 lines
385 B
JavaScript
import nextCoreWebVitals from "eslint-config-next/core-web-vitals";
|
|
import nextTypescript from "eslint-config-next/typescript";
|
|
|
|
const config = [
|
|
...nextCoreWebVitals,
|
|
...nextTypescript,
|
|
{
|
|
ignores: [
|
|
".next/**",
|
|
"node_modules/**",
|
|
"dist/**",
|
|
"src/payload-types.ts",
|
|
"src/app/(payload)/admin/importMap.js",
|
|
],
|
|
},
|
|
];
|
|
|
|
export default config;
|