mirror of
https://github.com/ente-io/ente.git
synced 2025-06-01 15:08:58 +00:00
19 lines
313 B
JavaScript
19 lines
313 B
JavaScript
// @ts-check
|
|
|
|
import config from "./eslintrc-react.mjs";
|
|
|
|
// A base config for Next.js apps.
|
|
export default [
|
|
...config,
|
|
{
|
|
ignores: [
|
|
"out",
|
|
".next",
|
|
"public",
|
|
".env*",
|
|
"next.config.js",
|
|
"next-env.d.ts",
|
|
],
|
|
},
|
|
];
|