Phil Quitslund
Phil Quitslund
Chatting w/ @matthewtsmith and @johnpryan (from apptree), it became apparent that for their use cases, allowing for logging of release builds is important.
Tool integrators will rejoice. Minimally we'll want this for eclipse and IDEA/WS integration.
# Proposal: Enhanced On-Demand Logging We’ve been exploring enhanced logging in Flutter, the IntelliJ plugin and most recently in a separate package and have been encouraged by a bunch of...
We're working to land a new hint in the Dart SDK to flag text direction code points (which can be abused) (https://github.com/dart-lang/sdk/issues/47611). In anticipation, we should update codegen here to...
Blocked on: - [x] #3823 - [x] #2921
Today if you want to catch and ignore an exception you can silence `empty_catches` by adding a comment to the catch clause, ```dart try { ... } catch(e) { //...
A meta-issue to discuss and track work on linter support for wildcard variables. * [Wildcards Feature Spec](https://github.com/dart-lang/language/blob/main/working/wildcards/feature-specification.md) --- ## Existing Lints - [x] [Wildcard Variables] evaluate support for `always_declare_return_types` -...
With wildcard variables, we have a proper way to mark unused parameters as _intentionally_ unused. Given that, we might consider a lint that flags unused parameters with the expectation that...
Like support for `use_enums`, etc. this will require us to have more than only member-level access to augmentation contributed accessors (see e.g., `isSimpleSetter`). Also, an open question: Currently we report...