Skip to content

Commit b244d3c

Browse files
committed
🤖 fix: Update second ignores section in eslint.config.mjs
- Found and updated the architectural boundary rule ignores section - This was the missing piece preventing lint from passing - All static checks now pass locally Part of comprehensive src/ reorganization. _Generated with `mux`_
1 parent 77ebb02 commit b244d3c

File tree

1 file changed

+5
-10
lines changed

1 file changed

+5
-10
lines changed

eslint.config.mjs

Lines changed: 5 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -402,16 +402,11 @@ export default defineConfig([
402402
// Renderer process (frontend) architectural boundary - prevent Node.js API usage
403403
files: ["src/**/*.ts", "src/**/*.tsx"],
404404
ignores: [
405-
"src/main*.ts",
406-
"src/preload.ts",
407-
"src/services/**",
408-
"src/runtime/**",
409-
"src/utils/main/**",
410-
"src/utils/providers/**",
411-
"src/telemetry/**",
412-
"src/git.ts",
413-
"src/config.ts",
414-
"src/debug/**",
405+
"src/cli/**",
406+
"src/desktop/**",
407+
"src/node/**",
408+
"src/main.tsx",
409+
"src/terminal-window.tsx",
415410
"**/*.test.ts",
416411
"**/*.test.tsx",
417412
],

0 commit comments

Comments
 (0)