File tree Expand file tree Collapse file tree 4 files changed +39
-5
lines changed Expand file tree Collapse file tree 4 files changed +39
-5
lines changed Original file line number Diff line number Diff line change
1
+ version : 2
2
+ enable-beta-ecosystems : true
3
+ updates :
4
+ - package-ecosystem : " github-actions"
5
+ directory : " /"
6
+ schedule :
7
+ interval : " weekly"
8
+ day : " tuesday"
9
+ time : " 20:00"
10
+ - package-ecosystem : " pub"
11
+ directory : " /"
12
+ schedule :
13
+ interval : " weekly"
14
+ day : " tuesday"
15
+ time : " 20:00"
Original file line number Diff line number Diff line change
1
+ name : ci
2
+
3
+ concurrency :
4
+ group : ${{ github.workflow }}-${{ github.ref }}
5
+ cancel-in-progress : true
6
+
7
+ on :
8
+ push :
9
+ branches :
10
+ - main
11
+ pull_request :
12
+ branches :
13
+ - main
14
+
15
+ jobs :
16
+ build :
17
+ uses : VeryGoodOpenSource/very_good_workflows/.github/workflows/dart_package.yml@v1
18
+ with :
19
+ coverage_excludes : " *.pb*.dart"
20
+ min_coverage : 0
Original file line number Diff line number Diff line change @@ -19,10 +19,9 @@ include: package:lints/recommended.yaml
19
19
# rules:
20
20
# - camel_case_types
21
21
22
- # analyzer:
23
- # exclude:
24
- # - path/to/excluded/files/**
25
-
22
+ analyzer :
23
+ exclude :
24
+ - lib/src/nitric/**
26
25
# For more information about the core and recommended set of lints, see
27
26
# https://dart.dev/go/core-lints
28
27
Original file line number Diff line number Diff line change @@ -37,7 +37,7 @@ class BlobEventResponse extends TriggerResponse {
37
37
BlobEventResponse ([this .success = true ]);
38
38
39
39
/// Converts this blob event response to a gRPC response.
40
- @protected
40
+ @internal
41
41
$bp.BlobEventResponse toWire () {
42
42
return $bp.BlobEventResponse (success: success);
43
43
}
You can’t perform that action at this time.
0 commit comments