Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Move to latest dart_flutter_team_lints #1667

Merged
merged 1 commit into from
Dec 11, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
Loading