mirror of
https://github.com/shadcn-ui/ui.git
synced 2026-06-11 09:51:40 +00:00
43 lines
1.1 KiB
JavaScript
43 lines
1.1 KiB
JavaScript
import nextVitals from "eslint-config-next/core-web-vitals"
|
|
import tseslint from "typescript-eslint"
|
|
|
|
const eslintConfig = tseslint.config(
|
|
// Remove the @typescript-eslint plugin from next/typescript to prevent
|
|
// duplicate registration with tseslint.configs.recommended.
|
|
...nextVitals.map((config) =>
|
|
config.name === "next/typescript"
|
|
? { ...config, plugins: {} }
|
|
: config
|
|
),
|
|
...tseslint.configs.recommended,
|
|
{
|
|
ignores: [
|
|
"node_modules/**",
|
|
".next/**",
|
|
"out/**",
|
|
"build/**",
|
|
"next-env.d.ts",
|
|
".source/**",
|
|
"**/__index__.tsx",
|
|
],
|
|
},
|
|
{
|
|
rules: {
|
|
"react-hooks/incompatible-library": "off",
|
|
"react-hooks/purity": "off",
|
|
"@next/next/no-html-link-for-pages": "off",
|
|
"@next/next/no-img-element": "off",
|
|
"@typescript-eslint/no-unused-vars": "off",
|
|
"@typescript-eslint/consistent-type-imports": [
|
|
"error",
|
|
{
|
|
prefer: "type-imports",
|
|
fixStyle: "inline-type-imports",
|
|
},
|
|
],
|
|
},
|
|
},
|
|
)
|
|
|
|
export default eslintConfig
|