We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent abb035e commit ebb1c3aCopy full SHA for ebb1c3a
1 file changed
eslint.config.mjs
@@ -1,6 +1,6 @@
1
import { dirname } from "path";
2
import { fileURLToPath } from "url";
3
-import { FlatCompat } from "@eslint/eslintrc";
+import { FlatCompat, globalIgnores } from "@eslint/eslintrc";
4
5
const __filename = fileURLToPath(import.meta.url);
6
const __dirname = dirname(__filename);
@@ -11,6 +11,9 @@ const compat = new FlatCompat({
11
12
const eslintConfig = [
13
...compat.extends("next/core-web-vitals", "next/typescript"),
14
+ globalIgnores([
15
+ "/components/ui/*"
16
+ ])
17
];
18
19
export default eslintConfig;
0 commit comments