Skip to content

Commit ea2419f

Browse files
authored
Move to latest dart_flutter_team_lints (#1667)
1 parent 5590447 commit ea2419f

File tree

11 files changed

+13
-11
lines changed

11 files changed

+13
-11
lines changed

pkgs/source_maps/CHANGELOG.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
## 0.10.14-wip
2+
13
## 0.10.13
24

35
* Require Dart 3.3

pkgs/source_maps/lib/builder.dart

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
// BSD-style license that can be found in the LICENSE file.
44

55
/// Contains a builder object useful for creating source maps programatically.
6-
library source_maps.builder;
6+
library;
77

88
// TODO(sigmund): add a builder for multi-section mappings.
99

pkgs/source_maps/lib/parser.dart

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
// BSD-style license that can be found in the LICENSE file.
44

55
/// Contains the top-level function to parse source maps version 3.
6-
library source_maps.parser;
6+
library;
77

88
import 'dart:convert';
99

pkgs/source_maps/lib/printer.dart

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
// BSD-style license that can be found in the LICENSE file.
44

55
/// Contains a code printer that generates code by recording the source maps.
6-
library source_maps.printer;
6+
library;
77

88
import 'package:source_span/source_span.dart';
99

pkgs/source_maps/lib/refactor.dart

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
///
77
/// [TextEditTransaction] supports making a series of changes to a text buffer.
88
/// [guessIndent] helps to guess the appropriate indentiation for the new code.
9-
library source_maps.refactor;
9+
library;
1010

1111
import 'package:source_span/source_span.dart';
1212

pkgs/source_maps/lib/source_maps.dart

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@
2424
/// var mapping = parse(json);
2525
/// mapping.spanFor(outputSpan1.line, outputSpan1.column)
2626
/// ```
27-
library source_maps;
27+
library;
2828

2929
import 'package:source_span/source_span.dart';
3030

pkgs/source_maps/lib/src/utils.dart

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
// BSD-style license that can be found in the LICENSE file.
44

55
/// Utilities that shouldn't be in this package.
6-
library source_maps.utils;
6+
library;
77

88
/// Find the first entry in a sorted [list] that matches a monotonic predicate.
99
/// Given a result `n`, that all items before `n` will not match, `n` matches,

pkgs/source_maps/lib/src/vlq.dart

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
/// represented by using the least significant bit of the value as the sign bit.
1111
///
1212
/// For more details see the source map [version 3 documentation](https://docs.google.com/document/d/1U1RGAehQwRypUTovF1KRlpiOFze0b-_2gc6fAH0KY0k/edit?usp=sharing).
13-
library source_maps.src.vlq;
13+
library;
1414

1515
import 'dart:math';
1616

pkgs/source_maps/pubspec.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
name: source_maps
2-
version: 0.10.13
2+
version: 0.10.14-wip
33
description: A library to programmatically manipulate source map files.
44
repository: https://github.com/dart-lang/tools/tree/main/pkgs/source_maps
55

@@ -10,6 +10,6 @@ dependencies:
1010
source_span: ^1.8.0
1111

1212
dev_dependencies:
13-
dart_flutter_team_lints: ^2.0.0
13+
dart_flutter_team_lints: ^3.0.0
1414
term_glyph: ^1.2.0
1515
test: ^1.16.0

pkgs/source_maps/test/common.dart

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
// BSD-style license that can be found in the LICENSE file.
44

55
/// Common input/output used by builder, parser and end2end tests
6-
library test.common;
6+
library;
77

88
import 'package:source_maps/source_maps.dart';
99
import 'package:source_span/source_span.dart';

0 commit comments

Comments
 (0)