Skip to content

extend non_constant_identifier_names for destructured variable declarations #58858

Closed
dart-archive/linter
#4084
@pq

Description

@pq

Destructuring doc.

Example:

BAD

var (LAT, LONG) = geoCode('Aarhus');

(double, double) geoCode(String city) => ...;

GOOD

var (lat, long) = geoCode('Aarhus');

(double, double) geoCode(String city) => ...;

Metadata

Metadata

Assignees

Type

No type

Projects

No projects

Milestone

No milestone

Relationships

None yet

Development

No branches or pull requests

Issue actions