Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions .vscode/settings.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
{
"files.readonlyInclude": {
"**/*": true
}
}
Comment on lines +1 to +5

Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

⚠️ Potential issue | 🔴 Critical

Do not commit workspace settings that mark all files as read-only.

This setting will prevent any developer from editing files in VSCode after cloning the repo. It appears to be a leftover from the code-generation/preview environment (v0.app). Remove this file or at least remove the "**/*": true glob.

🤖 Prompt for AI Agents
In @.vscode/settings.json around lines 1 - 5, Remove the workspace setting that
makes every file read-only in .vscode/settings.json by deleting the "\"**/*\":
true" entry (or remove the entire .vscode/settings.json file) so developers can
edit files after cloning; ensure no other read-only-wide globs remain in that
file and commit the cleaned settings (or remove the file) instead.

Loading