code_metrics
mkdocs_terok.code_metrics
¶
Generate a code quality report as Markdown.
Runs complexipy, vulture, tach, scc, and docstr-coverage, then assembles
the results into a single Markdown page with a Mermaid dependency diagram.
Returns a CodeMetricsResult containing the Markdown and any
companion files (e.g. SVGs) that the consumer should write alongside it.
CodeMetricsConfig
dataclass
¶
Configuration for quality report generation.
All paths are relative to root unless absolute. Sections gracefully
degrade with warning admonitions when external tools are missing.
Source code in src/mkdocs_terok/code_metrics.py
36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 | |
resolved_histogram_buckets
property
¶
Return histogram buckets with default narrow bins if not configured.
resolved_src_dir
property
¶
Return the source directory, falling back to src/ under root.
resolved_tests_dir
property
¶
Return the tests directory, falling back to tests/ under root.
__post_init__()
¶
Validate configuration values and normalize root to absolute.
Source code in src/mkdocs_terok/code_metrics.py
66 67 68 69 70 | |
CodeMetricsResult
dataclass
¶
Result of quality report generation.
Attributes:
| Name | Type | Description |
|---|---|---|
markdown |
str
|
The full Markdown report content. |
companion_files |
dict[str, str]
|
Mapping of relative paths to file contents that should be written alongside the report (e.g. SVGs). |
Source code in src/mkdocs_terok/code_metrics.py
112 113 114 115 116 117 118 119 120 121 122 123 | |
generate_code_metrics(config=None)
¶
Assemble the full quality report.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
config
|
CodeMetricsConfig | None
|
Report configuration. Uses defaults if |
None
|
Returns:
| Type | Description |
|---|---|
CodeMetricsResult
|
A |
Source code in src/mkdocs_terok/code_metrics.py
131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 | |