Don't create a lambda when a tear-off will do

pull/236/head
Till Friebe 4 years ago
parent 102883dfef
commit ea0dbd5ce0
  1. 1
      analysis_options.yaml
  2. 2
      lib/src/models/rules/insert.dart

@ -32,5 +32,6 @@ linter:
- prefer_single_quotes
- sort_constructors_first
- sort_unnamed_constructors_first
- unnecessary_lambdas
- unnecessary_parenthesis
- unnecessary_string_interpolations

@ -189,7 +189,7 @@ class AutoExitBlockRule extends InsertRule {
// therefore we can exit this block.
final attributes = cur.attributes ?? <String, dynamic>{};
final k = attributes.keys
.firstWhere((k) => Attribute.blockKeysExceptHeader.contains(k));
.firstWhere(Attribute.blockKeysExceptHeader.contains);
attributes[k] = null;
// retain(1) should be '\n', set it with no attribute
return Delta()..retain(index + (len ?? 0))..retain(1, attributes);

Loading…
Cancel
Save