Why this matters
Dart's library system provides automatic library titles based on file paths. Explicitly naming libraries is unnecessary and can lead to inconsistencies.
Ensure that libraries are not explicitly titled. Dart provides automatic library titles, so avoid redundant naming of libraries in the code.
Dart's library system provides automatic library titles based on file paths. Explicitly naming libraries is unnecessary and can lead to inconsistencies.
Side-by-side examples engineers can pattern-match during review.
library my_library;/// A really great test library.
@TestOn('browser')
library;library my_library;/// A really great test library.
@TestOn('browser')
library;From the same buckets as this rule.