Skip to content

Commit

Permalink
Move to latest dart_flutter_team_lints (#1667)
Browse files Browse the repository at this point in the history
  • Loading branch information
kevmoo authored Dec 11, 2024
1 parent 5590447 commit ea2419f
Show file tree
Hide file tree
Showing 11 changed files with 13 additions and 11 deletions.
2 changes: 2 additions & 0 deletions pkgs/source_maps/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
## 0.10.14-wip

## 0.10.13

* Require Dart 3.3
Expand Down
2 changes: 1 addition & 1 deletion pkgs/source_maps/lib/builder.dart
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
// BSD-style license that can be found in the LICENSE file.

/// Contains a builder object useful for creating source maps programatically.
library source_maps.builder;
library;

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

Expand Down
2 changes: 1 addition & 1 deletion pkgs/source_maps/lib/parser.dart
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
// BSD-style license that can be found in the LICENSE file.

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

import 'dart:convert';

Expand Down
2 changes: 1 addition & 1 deletion pkgs/source_maps/lib/printer.dart
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
// BSD-style license that can be found in the LICENSE file.

/// Contains a code printer that generates code by recording the source maps.
library source_maps.printer;
library;

import 'package:source_span/source_span.dart';

Expand Down
2 changes: 1 addition & 1 deletion pkgs/source_maps/lib/refactor.dart
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
///
/// [TextEditTransaction] supports making a series of changes to a text buffer.
/// [guessIndent] helps to guess the appropriate indentiation for the new code.
library source_maps.refactor;
library;

import 'package:source_span/source_span.dart';

Expand Down
2 changes: 1 addition & 1 deletion pkgs/source_maps/lib/source_maps.dart
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@
/// var mapping = parse(json);
/// mapping.spanFor(outputSpan1.line, outputSpan1.column)
/// ```
library source_maps;
library;

import 'package:source_span/source_span.dart';

Expand Down
2 changes: 1 addition & 1 deletion pkgs/source_maps/lib/src/utils.dart
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
// BSD-style license that can be found in the LICENSE file.

/// Utilities that shouldn't be in this package.
library source_maps.utils;
library;

/// Find the first entry in a sorted [list] that matches a monotonic predicate.
/// Given a result `n`, that all items before `n` will not match, `n` matches,
Expand Down
2 changes: 1 addition & 1 deletion pkgs/source_maps/lib/src/vlq.dart
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
/// represented by using the least significant bit of the value as the sign bit.
///
/// For more details see the source map [version 3 documentation](https://docs.google.com/document/d/1U1RGAehQwRypUTovF1KRlpiOFze0b-_2gc6fAH0KY0k/edit?usp=sharing).
library source_maps.src.vlq;
library;

import 'dart:math';

Expand Down
4 changes: 2 additions & 2 deletions pkgs/source_maps/pubspec.yaml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
name: source_maps
version: 0.10.13
version: 0.10.14-wip
description: A library to programmatically manipulate source map files.
repository: https://github.com/dart-lang/tools/tree/main/pkgs/source_maps

Expand All @@ -10,6 +10,6 @@ dependencies:
source_span: ^1.8.0

dev_dependencies:
dart_flutter_team_lints: ^2.0.0
dart_flutter_team_lints: ^3.0.0
term_glyph: ^1.2.0
test: ^1.16.0
2 changes: 1 addition & 1 deletion pkgs/source_maps/test/common.dart
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
// BSD-style license that can be found in the LICENSE file.

/// Common input/output used by builder, parser and end2end tests
library test.common;
library;

import 'package:source_maps/source_maps.dart';
import 'package:source_span/source_span.dart';
Expand Down
2 changes: 1 addition & 1 deletion pkgs/source_maps/test/utils_test.dart
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
// BSD-style license that can be found in the LICENSE file.

/// Tests for the binary search utility algorithm.
library test.utils_test;
library;

import 'package:source_maps/src/utils.dart';
import 'package:test/test.dart';
Expand Down

0 comments on commit ea2419f

Please sign in to comment.