chore: update workspace configuration and settings#18
Merged
Conversation
- Update VSCode settings for development environment - Modify Makefile for build system improvements - Add rules.code-workspace for workspace configuration These changes improve the development experience and workspace setup.
Contributor
There was a problem hiding this comment.
Pull Request Overview
This PR restructures the workspace configuration by centralizing theme settings and updating build system paths. The changes organize VSCode settings more efficiently and correct build target directories.
Key changes:
- Moved color customizations from VSCode settings to a new workspace file
- Updated Makefile to use correct Codex prompts directory path
- Created centralized workspace configuration for better project management
Reviewed Changes
Copilot reviewed 3 out of 3 changed files in this pull request and generated 1 comment.
| File | Description |
|---|---|
| rules.code-workspace | New workspace file containing centralized color theme and folder configurations |
| Makefile | Updated Codex target directory from commands to prompts |
| .vscode/settings.json | Removed color customizations and reformatted MCP server configurations |
| "folders": [ | ||
| { | ||
| "name": "rules", | ||
| "path": "/Users/shunkakinoki/ghq/github.com/shunkakinoki/rules" |
There was a problem hiding this comment.
Using an absolute path with a specific username makes this workspace configuration non-portable across different machines. Consider using a relative path like '../rules' or a workspace-relative variable.
Suggested change
| "path": "/Users/shunkakinoki/ghq/github.com/shunkakinoki/rules" | |
| "path": "../rules" |
shunkakinoki
enabled auto-merge (squash)
September 24, 2025 19:39
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.
Changes Made
Technical Details
Testing
🤖 Generated with code-supernova