Skip to content
Merged
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
16 changes: 16 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
// gitignore

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

Invalid comment syntax in .gitignore (use #, not //).

// gitignore is parsed as a pattern, not a comment. Replace with # gitignore.

Apply this diff:

-// gitignore
+# gitignore
📝 Committable suggestion

‼️ IMPORTANT
Carefully review the code before committing. Ensure that it accurately replaces the highlighted code, contains no missing lines, and has no issues with indentation. Thoroughly test & benchmark the code to ensure it meets the requirements.

Suggested change
// gitignore
# gitignore
🤖 Prompt for AI Agents
In .gitignore around lines 1 to 1 the line uses JS-style comment "// gitignore"
which is treated as a pattern instead of a comment; replace that line with a
hash comment "# gitignore" (remove the leading // and prepend #) so the entry is
ignored as a comment rather than a gitignore pattern.

.DS_Store
node_modules
.turbo
*.log
dist-ssr
*.local
.env
.cache
server/dist
public/dist
.yarn/install-state.gz

.pnp
.pnp.js
.yarn/install-state.gz
Loading