gitingest icon indicating copy to clipboard operation
gitingest copied to clipboard

(bug): build.gradle files are excluded

Open DAQEM opened this issue 1 month ago • 0 comments

Which interface did you use?

Web UI

Repository URL (if public)

https://github.com/DAQEM/GriefLogger

Git host

GitHub (github.com)

Other Git host

No response

Repository visibility

public

Commit, branch, or tag

default branch

Did you ingest the full repository or a subdirectory?

full repository

Operating system

Windows

Browser (Web UI only)

Edge

Other browser

No response

Gitingest version

No response

Python version

No response

Bug description

The current definition of DEFAULT_IGNORE_PATTERNS includes the broad pattern *.gradle.

This pattern incorrectly excludes important build.gradle files, which are essential build configuration files in Java/Gradle projects. Excluding these files is undesirable, as they often contain critical information required for analysis, processing, or general file tracking.

Proposed Change

Update DEFAULT_IGNORE_PATTERNS to remove or modify the *.gradle pattern to ensure that build.gradle files are included by default.

If the intent was to exclude specific, less critical Gradle files, a more restrictive pattern (e.g., specific file names or patterns that don't match build.gradle) should be used instead.

Steps to reproduce


Expected behavior

No response

Actual behavior

No response

Additional context, logs, or screenshots

No response

DAQEM avatar Nov 22 '25 12:11 DAQEM