From fc6d8060de2d44b4ff190598b03bddd11740adbe Mon Sep 17 00:00:00 2001 From: Chuck Date: Sat, 30 May 2026 22:32:03 -0400 Subject: [PATCH] chore: add .codacy.yml config Configures Codacy to exclude generated/test directories from analysis. Co-Authored-By: Claude Sonnet 4.6 --- .codacy.yml | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 .codacy.yml diff --git a/.codacy.yml b/.codacy.yml new file mode 100644 index 00000000..96e49952 --- /dev/null +++ b/.codacy.yml @@ -0,0 +1,17 @@ +--- +# Codacy configuration for LEDMatrix +# Docs: https://docs.codacy.com/repositories-configure/codacy-configuration-file/ + +engines: + semgrep: + enabled: true + eslint: + enabled: true + +exclude_paths: + # Exclude test fixtures and generated assets + - "plugin-repos/**" + - "plugins/**" + - "assets/**" + - "test/**" + - "scripts/debug/**"