mirror of
https://github.com/YuzuZensai/Pien-Studio.git
synced 2026-09-02 14:18:35 +00:00
13 lines
284 B
JavaScript
13 lines
284 B
JavaScript
import nextVitals from "eslint-config-next/core-web-vitals";
|
|
import nextTypescript from "eslint-config-next/typescript";
|
|
|
|
const eslintConfig = [
|
|
...nextVitals,
|
|
...nextTypescript,
|
|
{
|
|
ignores: [".next/**", "coverage/**", "next-env.d.ts"],
|
|
},
|
|
];
|
|
|
|
export default eslintConfig;
|