22 lines
733 B
JavaScript
22 lines
733 B
JavaScript
import nextCoreWebVitals from "eslint-config-next/core-web-vitals";
|
|
import nextTypescript from "eslint-config-next/typescript";
|
|
import { dirname } from 'path'
|
|
import { fileURLToPath } from 'url'
|
|
import prettier from 'eslint-config-prettier'
|
|
import importQuotes from 'eslint-plugin-import-quotes'
|
|
|
|
const __filename = fileURLToPath(import.meta.url)
|
|
const __dirname = dirname(__filename)
|
|
|
|
const eslintConfig = [...nextCoreWebVitals, ...nextTypescript, prettier, {
|
|
plugins: { 'import-quotes': importQuotes },
|
|
rules: {
|
|
// 👇 import 使用双引号
|
|
'import-quotes/import-quotes': ['error', 'double'],
|
|
},
|
|
}, {
|
|
ignores: ["node_modules/**", ".next/**", "out/**", "build/**", "next-env.d.ts"]
|
|
}]
|
|
|
|
export default eslintConfig
|