mirror of
https://github.com/nextui-org/nextui.git
synced 2025-12-08 19:26:11 +00:00
42 lines
842 B
JavaScript
42 lines
842 B
JavaScript
import baseConfig from "@heroui/standard/eslint/base.mjs";
|
|
import {defineConfig} from "eslint/config";
|
|
|
|
const config = defineConfig([
|
|
{
|
|
ignores: [
|
|
"**/.temp",
|
|
"**/.next",
|
|
"**/.swc",
|
|
"**/.turbo",
|
|
"**/.cache",
|
|
"**/.build",
|
|
"**/.vercel",
|
|
"**/.changeset",
|
|
"**/.DS_Store",
|
|
"**/dist",
|
|
"**/build",
|
|
"**/public/*",
|
|
"**/node_modules/",
|
|
"**/coverage",
|
|
"**/__snapshots__",
|
|
"**/.contentlayer/",
|
|
"pnpm-lock.yaml",
|
|
"**/storybook-static",
|
|
"!public/manifest.json",
|
|
".rollup.cache",
|
|
".rollup.cache/**",
|
|
"!.vscode",
|
|
"!scripts",
|
|
"!.*.js",
|
|
"!.*.cjs",
|
|
"!.*.mjs",
|
|
"!.*.ts",
|
|
"!contentlayer.config.ts",
|
|
"!next-sitemap.config.ts",
|
|
],
|
|
},
|
|
...baseConfig,
|
|
]);
|
|
|
|
export default config;
|