You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
body: "## 📋 Knip Code Quality Analysis\n\nThis report identifies potentially unused exports, dependencies, and files. **Note:** These are warnings only and may contain false positives, especially for:\n- MDX/documentation components\n- Dynamic imports\n- Framework magic (Next.js, Fumadocs)\n\n### Summary\n- Only **hard fails** occur for unused dependencies (knip:deps)\n- All other checks are informational warnings\n\nTo run locally:\n- `bun run knip:deps` - Check unused dependencies (hard fail)\n- `bun run knip:exports` - Check unused exports (warning)\n- `bun run knip:files` - Check unused files (warning)\n- `bun run knip:prod` - Check production deps (warning)\n\nSee [Knip Documentation](https://knip.dev) for more details."
Copy file name to clipboardExpand all lines: .github/workflows/tsconfig-validation.yml
+1-17Lines changed: 1 addition & 17 deletions
Original file line number
Diff line number
Diff line change
@@ -40,21 +40,5 @@ jobs:
40
40
issue_number: context.issue.number,
41
41
owner: context.repo.owner,
42
42
repo: context.repo.repo,
43
-
body: `## ⚠️ tsconfig.json Validation Failed
44
-
45
-
This pull request attempts to **remove or modify** critical tsconfig.json configurations. This is not allowed as it will break the site.
46
-
47
-
### ✅ What's Allowed:
48
-
- **Adding** new compiler options
49
-
- **Adding** new path aliases
50
-
- **Adding** new include/exclude patterns
51
-
52
-
### ❌ What's Not Allowed:
53
-
- Removing existing compiler options
54
-
- Modifying existing compiler option values
55
-
- Removing path aliases
56
-
- Modifying path alias mappings
57
-
- Removing include/exclude patterns
58
-
59
-
Please revert your changes to the existing configuration and only add new options if needed.`
43
+
body: "## ⚠️ tsconfig.json Validation Failed\n\nThis pull request attempts to **remove or modify** critical tsconfig.json configurations. This is not allowed as it will break the site.\n\n### ✅ What's Allowed:\n- **Adding** new compiler options\n- **Adding** new path aliases\n- **Adding** new include/exclude patterns\n\n### ❌ What's Not Allowed:\n- Removing existing compiler options\n- Modifying existing compiler option values\n- Removing path aliases\n- Modifying path alias mappings\n- Removing include/exclude patterns\n\nPlease revert your changes to the existing configuration and only add new options if needed."
0 commit comments