- 
                Notifications
    You must be signed in to change notification settings 
- Fork 34
Closed
Description
Description
The .vscode/ directory should be added to .gitignore to prevent VS Code workspace settings from being committed to the repository.
Problem
Currently, VS Code workspace settings files (like .vscode/settings.json) can be accidentally committed, which can:
- Override other developers' IDE preferences
- Cause conflicts between different development environments
- Include personal/local configuration that shouldn't be shared
Solution
Add .vscode/ to the .gitignore file under the IDEs section.
Expected Changes
############
## IDEs
############
+.vscode/
############
## PHPUnit
############Benefits
- Prevents accidental commits of VS Code workspace settings
- Allows developers to customize their local VS Code configuration without affecting the repository
- Follows common best practices for PHP projects
Metadata
Metadata
Assignees
Labels
No labels