techdebt_sherpa 0.1.1
techdebt_sherpa: ^0.1.1 copied to clipboard
CLI for technical debt observability and hotspot analysis in Dart and Flutter repositories.
example/main.dart
import 'dart:convert';
import 'package:techdebt_sherpa/techdebt_sherpa.dart';
/// Minimal runnable example for using the package API.
void main() {
final SherpaConfig defaults = SherpaConfig.defaults();
final String json =
const JsonEncoder.withIndent(' ').convert(defaults.toJson());
// ignore: avoid_print
print(json);
}