Open
Description
My pubspec.yaml
:
environment:
sdk: ^3.6.0
I'm creating a new flutter project with the latest stable.
I saw the following doesn't have any warnings:
linter:
rules:
- enable_null_safety
I'd expect this to give a warning as is not needed. This is on the lint docs:
NOTE: This rule is removed in Dart 3.0.0; it is no longer functional.
Some other rules such as always_require_non_null_named_parameters
are also not showing any diagnostics.
Tested by changing my pubspec.yaml
to:
environment:
sdk: ^3.3.0
And the diagnostic for always_require_non_null_named_parameters
did show up. So I guess something is not working as intended.