Skip to content

Commit f9b279a

Browse files
chore: pyqual auto-fix iteration
1 parent d7048c1 commit f9b279a

File tree

5 files changed

+37
-37
lines changed

5 files changed

+37
-37
lines changed

project/analysis.toon.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,8 @@ HEALTH[8]:
88
🟡 CC diff CC=15 (limit:15)
99
🟡 CC capture CC=17 (limit:15)
1010
🟡 CC collect CC=19 (limit:15)
11-
🟡 CC filter CC=15 (limit:15)
1211
🟡 CC detect_smells CC=17 (limit:15)
12+
🟡 CC filter CC=15 (limit:15)
1313

1414
REFACTOR[3]:
1515
1. split regix/benchmark.py (god module)

project/calls.mmd

Lines changed: 30 additions & 30 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
flowchart LR
22
subgraph regix__Regix
3-
regix__Regix____init__["__init__"]
43
regix__Regix__snapshot["snapshot"]
4+
regix__Regix____init__["__init__"]
55
regix__Regix__history["history"]
66
end
77
subgraph regix__backends
@@ -11,35 +11,35 @@ flowchart LR
1111
end
1212
subgraph regix__benchmark
1313
regix__benchmark___make_gates_probe["_make_gates_probe"]
14-
regix__benchmark__BenchmarkReporter__print_plain["print_plain"]
14+
regix__benchmark__BenchmarkReporter__print["print"]
1515
regix__benchmark___make_config_parse_probe["_make_config_parse_probe"]
16-
regix__benchmark__BenchmarkReporter__print_json["print_json"]
16+
regix__benchmark___make_snapshot_probe["_make_snapshot_probe"]
17+
regix__benchmark__BackendProbe__run["run"]
18+
regix__benchmark___make_compare_probe["_make_compare_probe"]
1719
regix__benchmark__build_regix_suite["build_regix_suite"]
20+
regix__benchmark__BenchmarkReporter__print_plain["print_plain"]
21+
regix__benchmark__BenchmarkReporter__print_json["print_json"]
1822
regix__benchmark__main["main"]
19-
regix__benchmark___make_compare_probe["_make_compare_probe"]
20-
regix__benchmark__BenchmarkReporter__print["print"]
21-
regix__benchmark__BackendProbe__run["run"]
22-
regix__benchmark___make_snapshot_probe["_make_snapshot_probe"]
2323
end
2424
subgraph regix__cache
25-
regix__cache__store["store"]
26-
regix__cache__clear["clear"]
2725
regix__cache___cache_key["_cache_key"]
2826
regix__cache__lookup["lookup"]
27+
regix__cache__clear["clear"]
28+
regix__cache__store["store"]
2929
regix__cache___cache_dir["_cache_dir"]
3030
end
3131
subgraph regix__cli
32-
regix__cli__status["status"]
33-
regix__cli___load_config["_load_config"]
34-
regix__cli__history["history"]
35-
regix__cli__gates["gates"]
3632
regix__cli__diff["diff"]
33+
regix__cli__gates["gates"]
3734
regix__cli__snapshot["snapshot"]
35+
regix__cli__status["status"]
36+
regix__cli__history["history"]
37+
regix__cli___load_config["_load_config"]
3838
end
3939
subgraph regix__compare
40+
regix__compare___compare_symbol_metrics["_compare_symbol_metrics"]
4041
regix__compare___compute_delta["_compute_delta"]
4142
regix__compare__compare["compare"]
42-
regix__compare___compare_symbol_metrics["_compare_symbol_metrics"]
4343
end
4444
subgraph regix__config
4545
regix__config__RegressionConfig__from_file["from_file"]
@@ -49,20 +49,20 @@ flowchart LR
4949
regix__gates___passes["_passes"]
5050
end
5151
subgraph regix__git
52-
regix__git__is_clean["is_clean"]
53-
regix__git__list_commits["list_commits"]
54-
regix__git__read_tree_sources["read_tree_sources"]
55-
regix__git__checkout_temporary["checkout_temporary"]
56-
regix__git__read_local_sources["read_local_sources"]
57-
regix__git__resolve_ref["resolve_ref"]
5852
regix__git__get_dirty_files["get_dirty_files"]
5953
regix__git___run_git["_run_git"]
54+
regix__git__read_local_sources["read_local_sources"]
55+
regix__git__is_clean["is_clean"]
56+
regix__git__read_tree_sources["read_tree_sources"]
57+
regix__git__list_commits["list_commits"]
6058
regix__git__get_changed_files["get_changed_files"]
59+
regix__git__resolve_ref["resolve_ref"]
60+
regix__git__checkout_temporary["checkout_temporary"]
6161
end
6262
subgraph regix__history
6363
regix__history__build_history["build_history"]
64-
regix__history___compute_trends["_compute_trends"]
6564
regix__history___aggregate_snapshot_metrics["_aggregate_snapshot_metrics"]
65+
regix__history___compute_trends["_compute_trends"]
6666
regix__history___linear_slope["_linear_slope"]
6767
end
6868
subgraph regix__report
@@ -71,23 +71,23 @@ flowchart LR
7171
end
7272
subgraph regix__smells
7373
regix__smells__detect_smells["detect_smells"]
74+
regix__smells___function_count_drop["_function_count_drop"]
75+
regix__smells___func_length["_func_length"]
76+
regix__smells___count_hollow_signals["_count_hollow_signals"]
7477
regix__smells___was_already_hollow["_was_already_hollow"]
78+
regix__smells___check_no_delegation["_check_no_delegation"]
79+
regix__smells___check_stub_regression["_check_stub_regression"]
7580
regix__smells___check_god_function["_check_god_function"]
7681
regix__smells___largest_function["_largest_function"]
77-
regix__smells___check_no_delegation["_check_no_delegation"]
78-
regix__smells___count_hollow_signals["_count_hollow_signals"]
7982
regix__smells___check_hallucination_proxy["_check_hallucination_proxy"]
80-
regix__smells___check_stub_regression["_check_stub_regression"]
81-
regix__smells___avg_func_length["_avg_func_length"]
8283
regix__smells___check_symbol_smells["_check_symbol_smells"]
83-
regix__smells___function_count_drop["_function_count_drop"]
84-
regix__smells___func_length["_func_length"]
84+
regix__smells___avg_func_length["_avg_func_length"]
8585
end
8686
subgraph regix__snapshot
87-
regix__snapshot__capture["capture"]
8887
regix__snapshot___merge_symbols["_merge_symbols"]
89-
regix__snapshot___collect_files["_collect_files"]
9088
regix__snapshot___filter_sources["_filter_sources"]
89+
regix__snapshot__capture["capture"]
90+
regix__snapshot___collect_files["_collect_files"]
9191
end
9292
subgraph scripts__check_regression
9393
scripts__check_regression__load_json_file["load_json_file"]
@@ -131,12 +131,12 @@ flowchart LR
131131
regix__snapshot__capture --> regix__git__read_local_sources
132132
regix__snapshot__capture --> regix__git__read_tree_sources
133133
regix__snapshot__capture --> regix__snapshot___filter_sources
134+
regix__report__render --> regix__report___render_rich
134135
regix__cache__lookup --> regix__cache___cache_dir
135136
regix__cache__lookup --> regix__cache___cache_key
136137
regix__cache__store --> regix__cache___cache_dir
137138
regix__cache__store --> regix__cache___cache_key
138139
regix__cache__clear --> regix__cache___cache_dir
139-
regix__report__render --> regix__report___render_rich
140140
regix__smells__detect_smells --> regix__smells___check_god_function
141141
regix__smells__detect_smells --> regix__smells___check_symbol_smells
142142
regix__smells___check_symbol_smells --> regix__smells___check_hallucination_proxy

project/calls.png

8.98 KB
Loading

project/context.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -334,11 +334,6 @@ snapshot [regix.cli]
334334
- **Key Methods**: regix.backends.docstring_backend.DocstringBackend.is_available, regix.backends.docstring_backend.DocstringBackend.version, regix.backends.docstring_backend.DocstringBackend.collect
335335
- **Inherits**: BackendBase
336336

337-
### regix.models.GateResult
338-
> Aggregate gate evaluation result.
339-
- **Methods**: 3
340-
- **Key Methods**: regix.models.GateResult.all_passed, regix.models.GateResult.errors, regix.models.GateResult.warnings
341-
342337
### regix.backends.radon_backend.RadonBackend
343338
> Maintainability index and cyclomatic complexity via ``radon``.
344339
- **Methods**: 3
@@ -351,6 +346,11 @@ snapshot [regix.cli]
351346
- **Key Methods**: regix.backends.BackendBase.is_available, regix.backends.BackendBase.collect, regix.backends.BackendBase.version
352347
- **Inherits**: ABC
353348

349+
### regix.models.GateResult
350+
> Aggregate gate evaluation result.
351+
- **Methods**: 3
352+
- **Key Methods**: regix.models.GateResult.all_passed, regix.models.GateResult.errors, regix.models.GateResult.warnings
353+
354354
### regix.backends.vallm_backend.VallmBackend
355355
> LLM-based code quality scoring via the ``vallm`` CLI tool.
356356
- **Methods**: 3

project/index.html

Lines changed: 1 addition & 1 deletion
Large diffs are not rendered by default.

0 commit comments

Comments
 (0)