From 8fe294c4729c5f71ea5d276f3eea8af734973c70 Mon Sep 17 00:00:00 2001 From: LeeGordon83 Date: Wed, 17 Jun 2026 15:07:59 +0100 Subject: [PATCH 1/3] added copilot exclusions --- .copilotignore | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 .copilotignore diff --git a/.copilotignore b/.copilotignore new file mode 100644 index 0000000..d7405c9 --- /dev/null +++ b/.copilotignore @@ -0,0 +1,12 @@ +# Repo-specific Copilot exclusions +# Note: .env exclusions are managed at org level. +# Core source folders (lib/, test/, config/) are intentionally included. + +# Generated lockfile - large, no code-completion value +package-lock.json + +# Test fixture with hardcoded CAP XML body - avoids Copilot suggesting literal XML +config/cap.json + +# Historical release notes - no coding value for indexing +docs/ From f83d96b43788c9399d8c0660ccb06e9d48e5ab22 Mon Sep 17 00:00:00 2001 From: LeeGordon83 Date: Fri, 19 Jun 2026 13:36:22 +0100 Subject: [PATCH 2/3] removed package-lock.json from .copilotignore --- .copilotignore | 3 --- 1 file changed, 3 deletions(-) diff --git a/.copilotignore b/.copilotignore index d7405c9..3a0dceb 100644 --- a/.copilotignore +++ b/.copilotignore @@ -2,9 +2,6 @@ # Note: .env exclusions are managed at org level. # Core source folders (lib/, test/, config/) are intentionally included. -# Generated lockfile - large, no code-completion value -package-lock.json - # Test fixture with hardcoded CAP XML body - avoids Copilot suggesting literal XML config/cap.json From 46e001b0f99fd5bf20bf3bac30d268a1387abf2f Mon Sep 17 00:00:00 2001 From: LeeGordon83 Date: Fri, 19 Jun 2026 13:53:30 +0100 Subject: [PATCH 3/3] added node_modules to copilotignroe --- .copilotignore | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.copilotignore b/.copilotignore index 3a0dceb..561d421 100644 --- a/.copilotignore +++ b/.copilotignore @@ -7,3 +7,6 @@ config/cap.json # Historical release notes - no coding value for indexing docs/ + +# Dependency directory +node_modules/