Skip to content

Commit

Permalink
chore(deps): bump very_good_analysis from 6.0.0 to 7.0.0 in /bricks/r…
Browse files Browse the repository at this point in the history
…13n/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] <support@github.com>

* update analysis file

* fix analysis warnings

---------

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Tom Arra <tarra3@gmail.com>
  • Loading branch information
dependabot[bot] and tomarra authored Dec 19, 2024
1 parent 6223ff8 commit a8bec3a
Show file tree
Hide file tree
Showing 7 changed files with 8 additions and 4 deletions.
2 changes: 1 addition & 1 deletion bricks/r13n/hooks/analysis_options.yaml
Original file line number Diff line number Diff line change
@@ -1 +1 @@
include: package:very_good_analysis/analysis_options.3.1.0.yaml
include: package:very_good_analysis/analysis_options.7.0.0.yaml
2 changes: 1 addition & 1 deletion bricks/r13n/hooks/pubspec.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -15,4 +15,4 @@ dependencies:
dev_dependencies:
mocktail: ^1.0.0
test: ^1.21.1
very_good_analysis: ^6.0.0
very_good_analysis: ^7.0.0
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
// Not needed for test files
// ignore_for_file: prefer_const_constructors

import 'package:r13n_hooks/hooks.dart';
Expand Down
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
// Not needed for test files
// ignore_for_file: prefer_const_constructors

import 'package:r13n_hooks/hooks.dart';
Expand Down
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
// Not needed for test files
// ignore_for_file: prefer_const_constructors

import 'package:r13n_hooks/hooks.dart';
Expand Down
3 changes: 2 additions & 1 deletion bricks/r13n/hooks/test/lib/runtime_compatibility_test.dart
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
// Not needed for test files
// ignore_for_file: prefer_const_constructors

import 'dart:io';
Expand Down Expand Up @@ -44,7 +45,7 @@ void main() {
tearDown(() {
try {
tempDir.deleteSync(recursive: true);
} catch (_) {}
} on Exception catch (_) {}
});

test('throws when a pubspec.lock does not exist', () {
Expand Down
2 changes: 1 addition & 1 deletion bricks/r13n/hooks/test/pre_gen_test.dart
Original file line number Diff line number Diff line change
Expand Up @@ -144,7 +144,7 @@ sdks:
final exitCalls = <int>[];
try {
await pre_gen.preGen(hookContext, exit: exitCalls.add);
} catch (err) {
} on Exception catch (err) {
expect(err, isA<R13nException>());
}
expect(exitCalls, equals([]));
Expand Down

0 comments on commit a8bec3a

Please sign in to comment.