Skip to content

Commit a8bec3a

Browse files
chore(deps): bump very_good_analysis from 6.0.0 to 7.0.0 in /bricks/r13n/hooks (#76)
* chore(deps): bump very_good_analysis in /bricks/r13n/hooks Bumps [very_good_analysis](https://github.com/VeryGoodOpenSource/very_good_analysis) from 6.0.0 to 7.0.0. - [Release notes](https://github.com/VeryGoodOpenSource/very_good_analysis/releases) - [Changelog](https://github.com/VeryGoodOpenSource/very_good_analysis/blob/main/CHANGELOG.md) - [Commits](VeryGoodOpenSource/very_good_analysis@v6.0.0...v7.0.0) --- updated-dependencies: - dependency-name: very_good_analysis dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <[email protected]> * update analysis file * fix analysis warnings --------- Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Tom Arra <[email protected]>
1 parent 6223ff8 commit a8bec3a

7 files changed

+8
-4
lines changed
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
include: package:very_good_analysis/analysis_options.3.1.0.yaml
1+
include: package:very_good_analysis/analysis_options.7.0.0.yaml

bricks/r13n/hooks/pubspec.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,4 +15,4 @@ dependencies:
1515
dev_dependencies:
1616
mocktail: ^1.0.0
1717
test: ^1.21.1
18-
very_good_analysis: ^6.0.0
18+
very_good_analysis: ^7.0.0

bricks/r13n/hooks/test/lib/r13n_arb_document_missing_region_tag_exception_test.dart

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
// Not needed for test files
12
// ignore_for_file: prefer_const_constructors
23

34
import 'package:r13n_hooks/hooks.dart';

bricks/r13n/hooks/test/lib/r13n_compatibility_exception_test.dart

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
// Not needed for test files
12
// ignore_for_file: prefer_const_constructors
23

34
import 'package:r13n_hooks/hooks.dart';

bricks/r13n/hooks/test/lib/r13n_yaml_parse_exception_test.dart

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
// Not needed for test files
12
// ignore_for_file: prefer_const_constructors
23

34
import 'package:r13n_hooks/hooks.dart';

bricks/r13n/hooks/test/lib/runtime_compatibility_test.dart

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
// Not needed for test files
12
// ignore_for_file: prefer_const_constructors
23

34
import 'dart:io';
@@ -44,7 +45,7 @@ void main() {
4445
tearDown(() {
4546
try {
4647
tempDir.deleteSync(recursive: true);
47-
} catch (_) {}
48+
} on Exception catch (_) {}
4849
});
4950

5051
test('throws when a pubspec.lock does not exist', () {

bricks/r13n/hooks/test/pre_gen_test.dart

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -144,7 +144,7 @@ sdks:
144144
final exitCalls = <int>[];
145145
try {
146146
await pre_gen.preGen(hookContext, exit: exitCalls.add);
147-
} catch (err) {
147+
} on Exception catch (err) {
148148
expect(err, isA<R13nException>());
149149
}
150150
expect(exitCalls, equals([]));

0 commit comments

Comments
 (0)