From 4136dcc307eb1e82773f69147220093026e5d237 Mon Sep 17 00:00:00 2001 From: caihaohan Date: Wed, 26 Mar 2025 15:15:38 +0800 Subject: [PATCH] =?UTF-8?q?chore:=20=E6=B7=BB=E5=8A=A0=20.cursorignore=20?= =?UTF-8?q?=E6=96=87=E4=BB=B6=E9=85=8D=E7=BD=AE?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - 新增 .cursorignore 文件,用于忽略索引时的目录和文件模式 - 忽略项目中的 target 目录、IDEA 配置文件等- 保留必要的 Maven wrapper 文件和源代码中的 target 目录 --- .cursorignore | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 .cursorignore diff --git a/.cursorignore b/.cursorignore new file mode 100644 index 0000000..55ea4af --- /dev/null +++ b/.cursorignore @@ -0,0 +1,15 @@ +# Add directories or file patterns to ignore during indexing (e.g. foo/ or *.csv) +# Project exclude paths +/Noodles-Detector/target/ + +HELP.md +target/ +!.mvn/wrapper/maven-wrapper.jar +!**/src/main/**/target/ +!**/src/test/**/target/ + +### IntelliJ IDEA ### +.idea +*.iws +*.iml +*.ipr \ No newline at end of file