Skip to content
Merged
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
2 changes: 1 addition & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -267,7 +267,7 @@ tests/*.test.ts
conductor/setup_state.json
*conductor/
*dist/
*mastra/
mastra/
Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

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

medium

The pattern mastra/ matches any directory named mastra at any depth in the project (e.g., src/mastra/). If the goal is to target a 'specific path' at the root (as mentioned in the PR description) and avoid accidentally ignoring directories like src/mastra/, it should be anchored with a leading slash. Note that there are already several specific exclusions for files under src/mastra/ later in this file (e.g., lines 204, 207, 229), which would be rendered redundant if the entire mastra/ directory is ignored globally.

/mastra/

*node_modules/
*coverage/
*.next/
Expand Down
Loading