refactor: remove unused imports from platform handlers and tests#1
Merged
Conversation
Contributor
There was a problem hiding this comment.
Pull request overview
This PR removes unused imports from platform handlers and test files to improve code cleanliness and maintainability. The changes are purely cosmetic refactoring with no functional impact.
Changes:
- Removed unused type imports from platform handlers (AgentConfig, Platform, Skill, Rule types)
- Removed unused test helper imports (writeFixture, readFixture)
- Removed unused utility imports (log function)
Reviewed changes
Copilot reviewed 7 out of 7 changed files in this pull request and generated no comments.
Show a summary per file
| File | Description |
|---|---|
| tests/platforms/base_test.ts | Removed unused AgentConfig and Platform type imports |
| tests/commands/list_test.ts | Removed unused writeFixture test helper import |
| tests/commands/import_test.ts | Removed unused readFixture test helper import |
| src/platforms/windsurf.ts | Removed unused Skill type import |
| src/platforms/cursor.ts | Removed unused Rule type import (kept Skill as it's used) |
| src/platforms/claude.ts | Removed unused Skill type import |
| src/commands/list.ts | Removed unused log utility import |
💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Removes unused imports.