From f554657b8f4a3e0f6573ad5781bd5c3cd705ddc5 Mon Sep 17 00:00:00 2001 From: iksnerd Date: Sat, 13 Jun 2026 21:04:37 +0300 Subject: [PATCH] Add .nexusignore to exclude Go tests from the code-nexus graph Keeps call-graph / impact / dead-code analysis focused on production code (tests still run via 'go test'). Also excludes testdata/. --- .nexusignore | 7 +++++++ 1 file changed, 7 insertions(+) create mode 100644 .nexusignore diff --git a/.nexusignore b/.nexusignore new file mode 100644 index 0000000..9e52564 --- /dev/null +++ b/.nexusignore @@ -0,0 +1,7 @@ +# code-nexus ignore rules (gitignore-style). +# Exclude Go test files from the code graph so call-graph / impact / dead-code +# analysis stays focused on production code. Tests still run via `go test`. +*_test.go + +# Generated/local artifacts that aren't source. +testdata/