extra_pedantic icon indicating copy to clipboard operation
extra_pedantic copied to clipboard

Stricter Dart analyzer linter settings and best practices.

Results 8 extra_pedantic issues
Sort by recently updated
recently updated
newest added

Consider new lints and push an update extra_pedantic.

If there's an SDK version mismatch between the user and developer of a lint rule list, then lints can be marked as being deprecated or missing by the dart analyzer....

missing_feature

An explicit instantiation of Maps and Sets via the constructor provided by LinkedHashMap/LinkedHashSet can be used to communicate that a HashMap/HashSet were considered and that a conscious decision was made...

I'm considering disabling this rule by demoting it into the 'breaks flow' category. Yes, you don't need to initialize everything that can be null to null, but it seems to...

reconsider

Somewhere between dart 2.16 and 2.18 this bug was introduced: Example: ```dart class Foo { final int bar; const Foo({ required final this.bar, // ^^^^^ // info: The keyword 'final'...

missing_feature

I can't go >3.5.0 right now, but once I can, extra_pedantic should be updated to support the newest lints.