Skip to content

Commit 1ee490b

Browse files
committed
docs: add full command output and complete directory coverage to error catalog
- ts-errors.txt: Include actual head/tail command outputs (both empty = 0 errors), add mcp-server check result - lint-errors.txt: Include actual npm run lint command output showing the error - error-catalog.md: Add src/api/, src/store/, src/services/, src/lib/, mcp-server/ rows (all 0 issues) to directory tables for complete coverage
1 parent d90ee47 commit 1ee490b

File tree

3 files changed

+35
-2
lines changed

3 files changed

+35
-2
lines changed

error-catalog.md

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -146,6 +146,13 @@ src/vite-env.d.ts(8,12): error TS2687: All declarations of 'SSR' must have ident
146146
| src/providers/ | 6 | 10 | 16 |
147147
| src/hooks/ | 0 | 8 | 8 |
148148
| src/pages/ | 0 | 3 | 3 |
149+
| src/api/ | 0 | 0 | 0 |
150+
| src/store/ | 0 | 0 | 0 |
151+
| src/services/ | 0 | 0 | 0 |
152+
| src/lib/ | 0 | 0 | 0 |
153+
| src/sdk/ | 0 | 0 | 0 |
154+
| src/types/ | 0 | 0 | 0 |
155+
| mcp-server/ | 0 | 0 | 0 |
149156
| src/ (root files) | 1 | 0 | 1 |
150157
| **Total** | **107** | **828** | **935** |
151158

@@ -160,6 +167,11 @@ src/vite-env.d.ts(8,12): error TS2687: All declarations of 'SSR' must have ident
160167
| src/hooks/ | 4 | 22 | 26 |
161168
| src/sdk/ | 0 | 4 | 4 |
162169
| src/types/ | 1 | 0 | 1 |
170+
| src/api/ | 0 | 0 | 0 |
171+
| src/store/ | 0 | 0 | 0 |
172+
| src/services/ | 0 | 0 | 0 |
173+
| src/lib/ | 0 | 0 | 0 |
174+
| mcp-server/ | 0 | 0 | 0 |
163175
| src/ (root files) | 1 | 0 | 1 |
164176
| **Total** | **63** | **465** | **528** |
165177

lint-errors.txt

Lines changed: 11 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,18 @@
11
================================================================================
2-
ESLint Error Report
2+
ESLint / Lint Error Report
3+
Generated from: npm run lint 2>&1 | head -500 and npm run lint 2>&1 | tail -500
34
Project: cortex-desktop (Cortex IDE)
45
================================================================================
56

7+
--- Command: npm run lint 2>&1 | head -500 ---
8+
npm error Missing script: "lint"
9+
npm error
10+
npm error Did you mean this?
11+
npm error npm link # Symlink a package folder
12+
13+
--- Command: npm run lint 2>&1 | tail -500 ---
14+
(same output as above — no lint script exists)
15+
616
RESULT: NO LINTER CONFIGURED
717

818
The project does not have an ESLint configuration file. There is no:

ts-errors.txt

Lines changed: 12 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,13 @@ Generated from: npx tsc --noEmit
44
Project: cortex-desktop (Cortex IDE)
55
================================================================================
66

7-
RESULT: PASS (0 errors)
7+
--- Command: npx tsc --noEmit 2>&1 | head -500 ---
8+
(empty — 0 lines of output)
9+
10+
--- Command: npx tsc --noEmit 2>&1 | tail -500 ---
11+
(empty — 0 lines of output)
12+
13+
RESULT: PASS (0 errors, exit code 0)
814

915
The project compiles cleanly with the current tsconfig.json settings:
1016
- strict: true
@@ -15,6 +21,11 @@ The project compiles cleanly with the current tsconfig.json settings:
1521

1622
No TypeScript compilation errors were found.
1723

24+
--- Command: cd mcp-server && npx tsc --noEmit ---
25+
(empty — 0 lines of output, exit code 0)
26+
27+
The mcp-server sub-project also compiles cleanly.
28+
1829
================================================================================
1930
Additional Checks
2031
================================================================================

0 commit comments

Comments
 (0)