docs(config): convert all configuration examples from TOML to YAML#179
docs(config): convert all configuration examples from TOML to YAML#179
Conversation
- Update file references from config.toml to config.yaml - Convert all code examples to YAML syntax - Update README.md configuration section - Add note that TOML format is still supported (YAML takes priority) 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
Summary of ChangesHello @AnnatarHe, I'm Gemini Code Assist1! I'm currently reviewing this pull request and will post my feedback shortly. In the meantime, here's a summary to help you and other reviewers quickly get up to speed! This pull request transitions the primary configuration documentation from TOML to YAML, aiming to provide more modern and widely adopted configuration examples. It updates all relevant file references and code snippets in the Highlights
Using Gemini Code AssistThe full guide for Gemini Code Assist can be found on our documentation page, here are some quick tips. Invoking Gemini You can request assistance from Gemini at any point by creating a comment using either
Customization To customize Gemini Code Assist for GitHub experience, repository maintainers can create a configuration file and/or provide a custom code review style guide (such as PEP-8 for Python) by creating and adding files to a Limitations & Feedback Gemini Code Assist may make mistakes. Please leave feedback on any instances where its feedback is incorrect or counter productive. You can react with 👍 and 👎 on @gemini-code-assist comments. If you're interested in giving your feedback about your experience with Gemini Code Assist for Github and other Google products, sign up here. You can also get AI-powered code generation, chat, as well as code reviews directly in the IDE at no cost with the Gemini Code Assist IDE Extension. Footnotes
|
Codecov Report✅ All modified and coverable lines are covered by tests.
Flags with carried forward coverage won't be shown. Click here to find out more. 🚀 New features to boost your workflow:
|
There was a problem hiding this comment.
Code Review
This pull request successfully converts configuration examples from TOML to YAML throughout the documentation, which aligns with the new priority for YAML configuration files. The changes are comprehensive and the new YAML examples are syntactically correct. I found one minor inconsistency where an example value was changed during the format conversion, which I've flagged for correction to avoid user confusion. Overall, this is a solid documentation improvement.
|
|
||
| ```yaml | ||
| codeTracking: | ||
| enabled: true |
There was a problem hiding this comment.
The value of enabled for codeTracking has been changed from false to true in this example. The primary goal of this pull request is to convert formats, not to alter example values. Furthermore, the table you've added on line 287 specifies that the default for codeTracking.enabled is false. To maintain consistency with both the previous documentation and the stated default value, it would be better to keep this as false.
| enabled: true | |
| enabled: false |
Summary
config.tomltoconfig.yamlthroughout documentationTest plan
🤖 Generated with Claude Code