Skip to content

Commit 5a3382a

Browse files
authored
Merge branch 'main' into feat/custom-unauthenticated-responses
2 parents f5fdf48 + fea901c commit 5a3382a

39 files changed

+40
-31
lines changed

bricks/dart_frog_new/hooks/analysis_options.yaml

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

33
linter:
44
rules:

bricks/dart_frog_new/hooks/lib/post_gen.dart

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ Future<void> postGen(
2828
io.File(
2929
path.join(currentDirectory.path, filename),
3030
).renameSync('$containingDirectoryPath/$filename');
31-
} catch (error) {
31+
} on Exception catch (error) {
3232
context.logger.err('$error');
3333
return exit(1);
3434
}

bricks/dart_frog_new/hooks/lib/pre_gen.dart

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ void preGen(
2929
final RouteConfiguration routeConfiguration;
3030
try {
3131
routeConfiguration = buildConfiguration(projectDirectory);
32-
} catch (error) {
32+
} on Exception catch (error) {
3333
context.logger.err('$error');
3434
return exit(1);
3535
}

bricks/dart_frog_new/hooks/pubspec.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,4 +12,4 @@ dependencies:
1212
dev_dependencies:
1313
mocktail: ^1.0.0
1414
test: ^1.19.2
15-
very_good_analysis: ^6.0.0
15+
very_good_analysis: ^7.0.0

examples/counter/analysis_options.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
include: package:very_good_analysis/analysis_options.6.0.0.yaml
1+
include: package:very_good_analysis/analysis_options.7.0.0.yaml
22
analyzer:
33
exclude:
44
- build/**

examples/counter/pubspec.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,4 +13,4 @@ dev_dependencies:
1313
http: ^1.0.0
1414
mocktail: ^1.0.0
1515
test: ^1.25.0
16-
very_good_analysis: ^6.0.0
16+
very_good_analysis: ^7.0.0

examples/echo/analysis_options.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
include: package:very_good_analysis/analysis_options.6.0.0.yaml
1+
include: package:very_good_analysis/analysis_options.7.0.0.yaml
22
analyzer:
33
exclude:
44
- build/**

examples/echo/pubspec.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,4 +13,4 @@ dev_dependencies:
1313
http: ^1.0.0
1414
mocktail: ^1.0.0
1515
test: ^1.25.0
16-
very_good_analysis: ^6.0.0
16+
very_good_analysis: ^7.0.0

examples/hello_world/analysis_options.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
include: package:very_good_analysis/analysis_options.6.0.0.yaml
1+
include: package:very_good_analysis/analysis_options.7.0.0.yaml
22
analyzer:
33
exclude:
44
- build/**

examples/hello_world/pubspec.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,4 +13,4 @@ dev_dependencies:
1313
http: ^1.0.0
1414
mocktail: ^1.0.0
1515
test: ^1.25.0
16-
very_good_analysis: ^6.0.0
16+
very_good_analysis: ^7.0.0

0 commit comments

Comments
 (0)