Skip to content
Closed
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
30 changes: 30 additions & 0 deletions .greptile/config.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
{
"strictness": 2,
"commentTypes": [
"logic",
"syntax"
],
"labels": [
"review:deep"
],
"includeAuthors": [
"zen-agents[bot]",
"zenagents-el[bot]"
],
"excludeAuthors": [
"dependabot[bot]",
"renovate[bot]",
"github-actions[bot]",
"pre-commit-ci[bot]",
"allcontributors[bot]",
"coderabbitai[bot]"
],
"triggerOnUpdates": false,
"statusCheck": true,
"fileChangeLimit": 100,
"ignorePatterns": "**/package-lock.json\n**/pnpm-lock.yaml\ndist/**\n.next/**\nnode_modules/**",

Copy link
Copy Markdown

Choose a reason for hiding this comment

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

🎯 Functional Correctness | 🟠 Major | ⚡ Quick win

Match ignored build and dependency directories at every depth.

Because these patterns contain /, dist/**, .next/**, and node_modules/** only target root-level directories under .greptile/’s governed root; nested paths such as packages/web/dist/** can still be reviewed. Greptile applies .gitignore-style matching, where **/ is needed for all directory levels. (greptile.com)

Proposed fix
-  "ignorePatterns": "**/package-lock.json\n**/pnpm-lock.yaml\ndist/**\n.next/**\nnode_modules/**",
+  "ignorePatterns": "**/package-lock.json\n**/pnpm-lock.yaml\n**/dist/**\n**/.next/**\n**/node_modules/**",
📝 Committable suggestion

‼️ IMPORTANT
Carefully review the code before committing. Ensure that it accurately replaces the highlighted code, contains no missing lines, and has no issues with indentation. Thoroughly test & benchmark the code to ensure it meets the requirements.

Suggested change
"ignorePatterns": "**/package-lock.json\n**/pnpm-lock.yaml\ndist/**\n.next/**\nnode_modules/**",
"ignorePatterns": "**/package-lock.json\n**/pnpm-lock.yaml\n**/dist/**\n**/.next/**\n**/node_modules/**",
🤖 Prompt for AI Agents
Verify each finding against current code. Fix only still-valid issues, skip the
rest with a brief reason, keep changes minimal, and validate.

In @.greptile/config.json at line 25, Update the ignorePatterns configuration in
.greptile/config.json so dist, .next, and node_modules patterns use recursive
directory matching with **/, ensuring these directories are ignored at every
nesting depth while preserving the existing lockfile exclusions.

"shouldUpdateDescription": false,
"autoApprove": {
"enabled": false
}
}
Loading