Skip to content

Commit 64982f8

Browse files
authored
Update to package:lints v4 (#3785)
1 parent 14d33d3 commit 64982f8

14 files changed

+13
-20
lines changed

analysis_options.yaml

-1
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,6 @@ linter:
2626
- dangling_library_doc_comments
2727
- directives_ordering
2828
- invalid_case_patterns
29-
- library_annotations
3029
- no_adjacent_strings_in_list
3130
- no_literal_bool_comparisons
3231
- omit_local_variable_types

lib/dartdoc.dart

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44

55
/// A documentation generator for Dart.
66
@Deprecated('Will be removed in a later version of DartDoc.')
7-
library dartdoc;
7+
library;
88

99
export 'package:dartdoc/src/dartdoc.dart';
1010
export 'package:dartdoc/src/dartdoc_options.dart';

lib/src/dartdoc_options.dart

+1-3
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,6 @@
22
// for details. All rights reserved. Use of this source code is governed by a
33
// BSD-style license that can be found in the LICENSE file.
44

5-
///
65
/// dartdoc's dartdoc_options.yaml configuration file follows similar loading
76
/// semantics to that of analysis_options.yaml,
87
/// [documented here](https://dart.dev/guides/language/analysis-options).
@@ -11,8 +10,7 @@
1110
///
1211
/// The classes here manage both the dartdoc_options.yaml loading and command
1312
/// line arguments.
14-
///
15-
library dartdoc.dartdoc_options;
13+
library;
1614

1715
import 'dart:io' show Platform, exitCode, stderr, stdout;
1816

lib/src/experiment_options.dart

+1-3
Original file line numberDiff line numberDiff line change
@@ -2,11 +2,9 @@
22
// for details. All rights reserved. Use of this source code is governed by a
33
// BSD-style license that can be found in the LICENSE file.
44

5-
///
65
/// Implementation of Dart language experiment option handling for dartdoc.
76
/// See https://github.com/dart-lang/sdk/blob/main/docs/process/experimental-flags.md.
8-
///
9-
library dartdoc.experiment_options;
7+
library;
108

119
import 'package:analyzer/file_system/file_system.dart';
1210
// ignore: implementation_imports

lib/src/generator/generator.dart

+1-1
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
/// A library containing an abstract documentation generator.
6-
library dartdoc.generator;
6+
library;
77

88
import 'package:analyzer/file_system/file_system.dart';
99
import 'package:dartdoc/src/dartdoc_options.dart';

lib/src/generator/resource_loader.dart

+1-1
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
/// Make it possible to load resources from the dartdoc code repository.
6-
library dartdoc.resource_loader;
6+
library;
77

88
import 'dart:convert' show utf8;
99
import 'dart:isolate' show Isolate;

lib/src/generator/templates.dart

+1-1
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@
3535
@Renderer(#renderTopLevelProperty, Context<TopLevelPropertyTemplateData>(),
3636
'top_level_property')
3737
@Renderer(#renderTypedef, Context<TypedefTemplateData>(), 'typedef')
38-
library dartdoc.templates;
38+
library;
3939

4040
import 'package:analyzer/file_system/file_system.dart';
4141
import 'package:dartdoc/src/dartdoc_options.dart';

lib/src/io_utils.dart

+1-1
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
/// This is a helper library to make working with io easier.
6-
library dartdoc.io_utils;
6+
library;
77

88
import 'dart:async';
99
import 'dart:collection';

lib/src/markdown_processor.dart

+1-1
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
/// Utility code to convert Markdown comments to HTML.
6-
library dartdoc.markdown_processor;
6+
library;
77

88
import 'dart:convert';
99
import 'dart:math';

lib/src/model/comment_referable.dart

+1-3
Original file line numberDiff line numberDiff line change
@@ -2,10 +2,8 @@
22
// for details. All rights reserved. Use of this source code is governed by a
33
// BSD-style license that can be found in the LICENSE file.
44

5-
///
65
/// Code for managing comment reference lookups in dartdoc.
7-
///
8-
library dartdoc.src.model.comment_reference;
6+
library;
97

108
import 'dart:core';
119

lib/src/model/model_element.dart

+1-1
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
/// The models used to represent Dart code.
6-
library dartdoc.models;
6+
library;
77

88
import 'dart:convert';
99

lib/src/source_linker.dart

+1-1
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
/// A library for getting external source code links for Dartdoc.
6-
library dartdoc.source_linker;
6+
library;
77

88
import 'package:analyzer/file_system/file_system.dart';
99
import 'package:dartdoc/src/dartdoc_options.dart';

pubspec.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ dependencies:
2626
dev_dependencies:
2727
async: ^2.11.0
2828
dart_style: ^2.3.4
29-
lints: ^3.0.0
29+
lints: ^4.0.0
3030
matcher: ^0.12.15
3131
test: ^1.24.2
3232
test_descriptor: ^2.0.1

test/warnings_test.dart

+1-1
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
/// Unit tests for lib/src/warnings.dart.
6-
library dartdoc.warnings_test;
6+
library;
77

88
import 'package:analyzer/file_system/physical_file_system.dart';
99
import 'package:dartdoc/src/dartdoc_options.dart';

0 commit comments

Comments
 (0)