Skip to content

archlint scan

scanコマンドは、プロジェクトの完全なアーキテクチャ分析を実行します。

使用法

bash
archlint scan [path] [options]

オプション

オプションデフォルト説明
--format <format>table出力形式: table, json, markdown
--report <file>stdoutレポートをファイルに保存します
--min-severity <sev>low重要度でフィルタリング: low, medium, high, critical
--detectors <ids>all実行する検出器(detectors)のカンマ区切りリスト
--exclude-detectors <ids>noneスキップする検出器
--no-cachefalse分析キャッシュを無効にします

使用例

Markdownレポートを使用したスキャン

bash
archlint scan --format markdown --report report.md

サイクル検出のみを実行

bash
archlint scan --detectors cycles,circular_type_deps

高重要度(high severity)のみ

bash
archlint scan --min-severity high

Released under the MIT License.