20 lines
292 B
JavaScript
20 lines
292 B
JavaScript
import { defineConfig, globalIgnores } from "eslint/config";
|
|
|
|
const eslintConfig = defineConfig([
|
|
{
|
|
ignores: [
|
|
".next/**",
|
|
"out/**",
|
|
"build/**",
|
|
"next-env.d.ts",
|
|
],
|
|
},
|
|
{
|
|
rules: {
|
|
// 自定义规则
|
|
},
|
|
},
|
|
]);
|
|
|
|
export default eslintConfig;
|