dyzer 1.0.3
dyzer: ^1.0.3 copied to clipboard
Dyzer is a software analytics tool that helps developers analyse and improve software quality. Dyzer is based on a fork of Dart Code Metrics.
Use this package as an executable
Install it
You can install the package from the command line:
dart pub global activate dyzerUse it
The package has the following executables:
$ dyzer
Use this package as a library
Depend on it
Run this command:
With Dart:
$ dart pub add dyzerWith Flutter:
$ flutter pub add dyzerThis will add a line like this to your package's pubspec.yaml (and run an implicit dart pub get):
dependencies:
dyzer: ^1.0.3Alternatively, your editor might support dart pub get or flutter pub get. Check the docs for your editor to learn more.
Import it
Now in your Dart code, you can use:
import 'package:dyzer/analyzer_plugin.dart';
import 'package:dyzer/cli_runner.dart';
import 'package:dyzer/config.dart';
import 'package:dyzer/lint_analyzer.dart';
import 'package:dyzer/reporters.dart';
import 'package:dyzer/unnecessary_nullable_analyzer.dart';
import 'package:dyzer/unused_code_analyzer.dart';
import 'package:dyzer/unused_files_analyzer.dart';
import 'package:dyzer/unused_l10n_analyzer.dart';