Skip to content

Comments

feat(filetree): Add exclude option to ignore paths in tree output#13

Merged
ioncakephper merged 1 commit intomainfrom
docs/github-files
Oct 26, 2025
Merged

feat(filetree): Add exclude option to ignore paths in tree output#13
ioncakephper merged 1 commit intomainfrom
docs/github-files

Conversation

@ioncakephper
Copy link
Owner

No description provided.

@gemini-code-assist
Copy link

Summary of Changes

Hello @ioncakephper, 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 enhances the file tree generation functionality by adding a new configuration option to exclude specific paths. This feature provides greater control over the output, allowing users to filter out irrelevant or temporary directories, thereby improving the clarity and utility of the generated file trees.

Highlights

  • New Feature: Exclude Option for File Tree: This pull request introduces an exclude option to the fileTreeExtended configuration, allowing users to specify paths or directories that should be ignored when generating the file tree output.
  • Default Exclusions: The exclude option is pre-configured with common directories to ignore, such as node_modules, .git, .vscode, and .DS_Store, ensuring cleaner and more relevant file tree representations by default.
Using Gemini Code Assist

The 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 /gemini <command> or @gemini-code-assist <command>. Below is a summary of the supported commands on the current page.

Feature Command Description
Code Review /gemini review Performs a code review for the current pull request in its current state.
Pull Request Summary /gemini summary Provides a summary of the current pull request in its current state.
Comment @gemini-code-assist Responds in comments when explicitly tagged, both in pull request comments and review comments.
Help /gemini help Displays a list of available commands.

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 .gemini/ folder in the base of the repository. Detailed instructions can be found here.

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

  1. Review the Privacy Notices, Generative AI Prohibited Use Policy, Terms of Service, and learn how to configure Gemini Code Assist in GitHub here. Gemini can make mistakes, so double check it and use code with caution.

@ioncakephper ioncakephper merged commit dc5ef36 into main Oct 26, 2025
0 of 6 checks passed
@ioncakephper ioncakephper deleted the docs/github-files branch October 26, 2025 13:24
Copy link

@gemini-code-assist gemini-code-assist bot left a comment

Choose a reason for hiding this comment

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

Code Review

This pull request introduces a new exclude option to the fileTreeExtended transform, allowing specific paths to be ignored from the file tree output. The implementation involves filtering the path list after it's generated. The documentation and configuration files have been updated to reflect this new feature. My feedback focuses on a redundancy in the new configuration which could be simplified for better clarity and efficiency.

style: 'for-the-badge',
},
fileTreeExtended: {
exclude: ['node_modules', '.git', '.vscode', '.DS_Store'],

Choose a reason for hiding this comment

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

medium

The paths listed in this exclude array (node_modules, .git, .vscode, .DS_Store) are already covered by the default ignore option in the transform. While this is not harmful, it is redundant. The ignore option is also more efficient for large directories as it prevents fast-glob from traversing them in the first place. To avoid this redundancy and potential confusion, consider removing this line and relying on the default ignore behavior.

style: 'for-the-badge',
},
fileTreeExtended: {
exclude: ['node_modules', '.git', '.vscode', '.DS_Store'],

Choose a reason for hiding this comment

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

medium

This example demonstrates using exclude for paths that are already ignored by default via the ignore option. This is redundant and might be confusing for users trying to understand the difference between exclude and ignore. A better example would showcase excluding files not covered by the default ignores, such as ['package.json', 'package-lock.json'], which is used elsewhere in this README. This would more clearly illustrate the intended use case for the new exclude option.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

1 participant