Enable strict-casts (as replacement for implicit-casts)#101567
Enable strict-casts (as replacement for implicit-casts)#101567goderbauer merged 2 commits intoflutter:masterfrom
Conversation
|
It looks like this pull request may not have tests. Please make sure to add tests before merging. If you need an exemption to this rule, contact Hixie on the #hackers channel in Chat (don't just cc him here, he won't see it! He's on Discord!). If you are not sure if you need tests, consider this rule of thumb: the purpose of a test is to make sure someone doesn't accidentally revert the fix. Ask yourself, is there anything in your PR that you feel it is important we not accidentally revert back to how it was before your fix? Reviewers: Read the Tree Hygiene page and make sure this patch meets those guidelines before LGTMing. |
|
/cc @srawlins |
| # Specify analysis options. | ||
| # | ||
| # Until there are meta linter rules, each desired lint must be explicitly enabled. | ||
| # See: https://github.com/dart-lang/linter/issues/288 |
There was a problem hiding this comment.
I agree that the link is not relevant, but isn't it still true that we have to manually enable every lint?
It'd be great if we had a test that checked that when Dart is rolled, the lints in this file (including those commented out) exactly match the list of lints in the version of Dart...
|
test-exempt: is a test |
The (deprecated)
implicit-casts: falseoption was disabled in #100862 - unfortunately without enabling its replacementstrict-casts: true.See also https://dart.googlesource.com/sdk.git/+/6a54fdd46e2df14c9a7b4fd9d6b2d6e181ca0b7a.
This PR also updates some minor comments in the analysis_options file.