Skip to content
Open
Show file tree
Hide file tree
Changes from 5 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: 4 additions & 1 deletion .cursor/rules/next-best-practices.mdc
Original file line number Diff line number Diff line change
@@ -1,9 +1,12 @@
---
description:
globs:
alwaysApply: false
---
description:
globs:
alwaysApply: true
---
Copy link

Choose a reason for hiding this comment

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

⚠️ Potential issue

Fix duplicate YAML frontmatter blocks.

The file contains two YAML frontmatter blocks with conflicting alwaysApply values. This is likely a configuration error that could cause parsing issues or unexpected behavior.

Remove the duplicate frontmatter and keep only one block:

----
-description: 
-globs: 
-alwaysApply: false
----
 description: 
 globs: 
 alwaysApply: true
 ---

Committable suggestion skipped: line range outside the PR's diff.

🤖 Prompt for AI Agents
In .cursor/rules/next-best-practices.mdc at lines 1 to 9, there are two YAML
frontmatter blocks with conflicting alwaysApply values. Remove one of the
duplicate frontmatter blocks entirely so that only a single YAML frontmatter
block remains at the top of the file, ensuring consistent configuration and
preventing parsing errors.


You are an expert in TypeScript, Node.js, Next.js App Router, React, React Bits, Radix UI and Tailwind.

Code Style and Structure
Expand Down
15 changes: 12 additions & 3 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,3 +1,12 @@
node_modules
dist
.env
# Dependencies (auto-generated heavy folders)
node_modules/
.pnpm/

# Environment variables (sensitive info)
.env
discord/.env
Copy link
Member

Choose a reason for hiding this comment

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

si c'est spécifique c'est mieux de mettre un gitignore dans le dossier discord directement


# Build output (compiled/generated files)
.next/
out/
dist/
2 changes: 2 additions & 0 deletions discord/.gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
# Environment variables (sensitive info)
.env
Loading