Skip to content

Commit fc74a85

Browse files
committed
Update ESLint config to ignore itself for CI compatibility
1 parent 27613e3 commit fc74a85

File tree

1 file changed

+8
-1
lines changed

1 file changed

+8
-1
lines changed

eslint.config.ts

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,14 @@ import { globalIgnores, defineConfig } from "eslint/config";
77
import pluginLingui from "eslint-plugin-lingui";
88

99
export default defineConfig([
10-
globalIgnores(["dist", "coverage", "node_modules", "src/locales"]),
10+
globalIgnores([
11+
"dist",
12+
"coverage",
13+
"node_modules",
14+
"src/locales",
15+
// Avoid linting the ESLint config itself to prevent parserOptions.project resolution issues in CI
16+
"eslint.config.ts",
17+
]),
1118
{
1219
files: ["**/*.{ts,tsx}"],
1320
extends: [

0 commit comments

Comments
 (0)