linting 1.5.0 copy "linting: ^1.5.0" to clipboard
linting: ^1.5.0 copied to clipboard

discontinued

linting is a framework for creating custom linters using the analyzer_plugin and cli.

example/lib/main.dart

import 'package:linting/cli.dart';
import 'package:simple_linter/rules.dart';

Future<void> main(List<String> args) async {
  await CliRunner(commands: [
    AnalyzeCommand(
      rules: rules,
      reporters: [ConsoleReporter(print)],
      analyzer: LintingAnalyzer(),
    ),
  ]).run(args);
}
3
likes
80
points
62
downloads

Publisher

unverified uploader

Weekly Downloads

linting is a framework for creating custom linters using the analyzer_plugin and cli.

Repository (GitHub)

Documentation

API reference

License

MIT (license)

Dependencies

analyzer, analyzer_plugin, args, glob, path, source_span, test, yaml

More

Packages that depend on linting