zoo_lints 1.0.2 copy "zoo_lints: ^1.0.2" to clipboard
zoo_lints: ^1.0.2 copied to clipboard

Recommended lints for Flutter apps, packages, and plugins to encourage good coding practices.

example/lib/example.dart

import 'package:zoo_lints/zoo_lints.dart';

Future<void> main() async {
  /// Await async functions.
  await asyncFunction();

  /// Use [unawaited] to indicate that a [Future] is intentionally not awaited.
  /// Otherwise you'll get a warning
  unawaited(asyncFunction());
}

Future<String> asyncFunction() => Future.value('hello world!');
2
likes
150
points
16
downloads

Publisher

verified publisherzoocityboy.space

Weekly Downloads

Recommended lints for Flutter apps, packages, and plugins to encourage good coding practices.

Repository (GitHub)
View/report issues

Documentation

Documentation
API reference

License

MIT (license)

Dependencies

very_good_analysis

More

Packages that depend on zoo_lints