fix invalid yaml in rules globs#1833
fix invalid yaml in rules globs#1833martinklepsch wants to merge 1 commit intotriggerdotdev:mainfrom
Conversation
|
WalkthroughThe change updates the configuration in Changes
Possibly related PRs
Suggested reviewers
Poem
Thanks for using CodeRabbit! It's free for OSS, and your support helps us grow. If you like it, consider giving us a shout-out. 🪧 TipsChatThere are 3 ways to chat with CodeRabbit:
Note: Be mindful of the bot's finite context window. It's strongly recommended to break down tasks such as reading entire modules into smaller chunks. For a focused discussion, use review comments to chat about specific files and their changes, instead of using the PR comments. CodeRabbit Commands (Invoked using PR comments)
Other keywords and placeholders
CodeRabbit Configuration File (
|
| @@ -1,5 +1,5 @@ | |||
| --- | |||
| globs: **/trigger/**/*.ts, **/trigger/**/*.tsx,**/trigger/**/*.js,**/trigger/**/*.jsx | |||
| globs: [ '**/trigger/**/*.ts', '**/trigger/**/*.tsx', '**/trigger/**/*.js', '**/trigger/**/*.jsx' ] | |||
There was a problem hiding this comment.
🛠️ Refactor suggestion
Convert globs to a Valid YAML Array
The updated globs property now uses a YAML array of strings instead of a comma-separated string, which resolves the invalid YAML issue and improves readability. Ensure that any tools or scripts parsing this configuration are updated to work with the array format.
|
Please ignore this I was confused |
Just saw your blog post and noticed the frontmatter isn't quite correct.
I've also asked on the cursor forum to verify this but essentially the format for the globs is invalid YAML currently
Summary by CodeRabbit