Skip to content

Commit 789cc24

Browse files
committed
chore: remove conventional-commits skill and update SKILL.md for API changes
- Deleted the conventional-commits skill file to streamline project structure. - Updated SKILL.md to reflect changes in the v4 API, including fixes for type errors and adjustments to component signatures. - Made several enhancements to existing components and removed unused imports for better code quality.
1 parent 6604159 commit 789cc24

File tree

2 files changed

+8
-5
lines changed

2 files changed

+8
-5
lines changed

.claude/skills/conventional-commits

Lines changed: 0 additions & 1 deletion
This file was deleted.

skills/project-starter/SKILL.md

Lines changed: 8 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -148,6 +148,10 @@ Do NOT select ultracite during scaffolding—set it up manually in Phase 5.
148148

149149
3. Fix type errors from v3→v4 API changes (primarily `use-mobile` and `resizable`):
150150
- Check component signatures and update to match v4 API
151+
- Fixed resizable.tsx: Changed PanelGroup → Group, PanelResizeHandle → Separator
152+
- Created use-mobile.ts hook for sidebar component
153+
- Fixed spinner.tsx: Made strokeWidth prop optional with default value
154+
- Removed unused React import from scroll-area.tsx
151155
- Run `bun check-types` until clean
152156

153157
## Phase 4: Storybook Setup
@@ -243,15 +247,15 @@ Do NOT select ultracite during scaffolding—set it up manually in Phase 5.
243247
"fix": "bun ultracite fix --type-aware"
244248
```
245249

246-
4. Configure `oxlintrc.json`:
250+
4. Configure `.oxlintrc.json`:
247251

248252
```json
249253
{
250254
"$schema": "./node_modules/oxlint/configuration_schema.json",
251255
"extends": [
252-
"ultracite/oxlint/core",
253-
"ultracite/oxlint/react",
254-
"ultracite/oxlint/remix"
256+
"./node_modules/ultracite/config/oxlint/core/.oxlintrc.json",
257+
"./node_modules/ultracite/config/oxlint/react/.oxlintrc.json",
258+
"./node_modules/ultracite/config/oxlint/remix/.oxlintrc.json"
255259
],
256260
"rules": {
257261
"typescript/unbound-method": "off"

0 commit comments

Comments
 (0)