From 989234c7b1241312ad34b58bf42fa570eede8edd Mon Sep 17 00:00:00 2001 From: 7000pctAUTO Date: Mon, 2 Feb 2026 02:34:48 +0000 Subject: [PATCH] Initial upload with project structure and configuration --- config.yaml | 57 +++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 57 insertions(+) create mode 100644 config.yaml diff --git a/config.yaml b/config.yaml new file mode 100644 index 0000000..54caa6c --- /dev/null +++ b/config.yaml @@ -0,0 +1,57 @@ +parser: + languages: + - python + - javascript + - go + - rust + include_patterns: + - "*.py" + - "*.pyi" + - "*.js" + - "*.jsx" + - "*.ts" + - "*.tsx" + - "*.go" + - "*.rs" + exclude_patterns: + - "**/test_*.py" + - "**/*_test.py" + - "**/tests/**" + - "**/__pycache__/**" + - "**/node_modules/**" + - "**/.git/**" + - "**/build/**" + - "**/dist/**" + +graph: + node_types: + - file + - function + - class + - method + edge_types: + - imports + - calls + - contains + default_layout: dot + rankdir: TB + +analysis: + complexity_threshold: 10 + max_file_size_mb: 10 + cycle_detection: true + +output: + default_format: json + include_code_snippets: false + color_scheme: default + +export: + dot: + layout: dot + rankdir: TB + png: + layout: dot + format: png + json: + include_code: false