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

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
pub points
10%
popularity

Publisher

unverified uploader

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

Repository (GitHub)
View/report issues

Documentation

API reference

License

MIT (LICENSE)

Dependencies

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

More

Packages that depend on linting