This is an automated email from the ASF dual-hosted git repository.
xiangfu pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/pinot.git
The following commit(s) were added to refs/heads/master by this push:
new c19972df092 Add .claude and .cursor directories to gitignore and build
validation exclusions (#18011)
c19972df092 is described below
commit c19972df09263931731880c3381fb0df936c93bb
Author: Xiang Fu <[email protected]>
AuthorDate: Fri Mar 27 18:02:52 2026 -0700
Add .claude and .cursor directories to gitignore and build validation
exclusions (#18011)
Auto-merged by automated PR review bot.
---
.gitignore | 3 +++
pom.xml | 11 +++++++++++
2 files changed, 14 insertions(+)
diff --git a/.gitignore b/.gitignore
index 7db56ef099c..9804511a136 100644
--- a/.gitignore
+++ b/.gitignore
@@ -64,6 +64,9 @@
pinot-integration-tests/src/test/resources/udf-test-results/*.md
tmp/
+# Claude Code / Anthropic
+.claude/
+
# OpenAI / Codex / ChatGPT-style tools
.codex/
.codex-cache/
diff --git a/pom.xml b/pom.xml
index b6fff32fbf5..e6013ddd75c 100644
--- a/pom.xml
+++ b/pom.xml
@@ -2794,6 +2794,15 @@
<exclude>**/.classpath</exclude>
<exclude>.externalToolBuilders/**</exclude>
+ <!-- GenAI Config files -->
+ <exclude>.claude/**</exclude>
+ <exclude>.codex/**</exclude>
+ <exclude>.continue/**</exclude>
+ <exclude>.copilot/**</exclude>
+ <exclude>.cursor/**</exclude>
+ <exclude>.openai/**</exclude>
+ <exclude>.ollama/**</exclude>
+
<!-- specific files -->
<exclude>**/src/test/resources/*version-header.properties</exclude>
</excludes>
@@ -2905,9 +2914,11 @@
<exclude>.externalToolBuilders/**</exclude>
<!-- GenAI Config files -->
+ <exclude>.claude/**</exclude>
<exclude>.codex/**</exclude>
<exclude>.continue/**</exclude>
<exclude>.copilot/**</exclude>
+ <exclude>.cursor/**</exclude>
<exclude>.openai/**</exclude>
<exclude>.ollama/**</exclude>
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]