pedantic 1.11.1 copy "pedantic: ^1.11.1" to clipboard
pedantic: ^1.11.1 copied to clipboard

discontinuedreplaced by: lints

The Dart analyzer settings and best practices used internally at Google.

example/example.dart

import 'package:pedantic/pedantic.dart';

void main() async {
  // Normally, calling a function that returns a Future from an async method
  // would require you to ignore the unawaited_futures lint with this analyzer
  // syntax:
  //
  // ignore: unawaited_futures
  doSomethingAsync();

  // Wrapping it in a call to `unawaited` avoids that, since it doesn't
  // return a Future. This is more explicit, and harder to get wrong.
  unawaited(doSomethingAsync());
}

Future<void> doSomethingAsync() async {}
525
likes
140
pub points
99%
popularity

Publisher

verified publishergoogle.dev

The Dart analyzer settings and best practices used internally at Google.

Repository (GitHub)
View/report issues
Contributing

Documentation

API reference

License

BSD-3-Clause (LICENSE)

More

Packages that depend on pedantic