File tree 2 files changed +9
-5
lines changed
2 files changed +9
-5
lines changed Original file line number Diff line number Diff line change @@ -19,6 +19,7 @@ analyzer:
19
19
- " lib/i18n/stock_messages_*.dart"
20
20
- " lib/src/http/**"
21
21
- " example/**"
22
+ - " **/*.g.dart"
22
23
23
24
linter :
24
25
rules :
@@ -158,3 +159,4 @@ linter:
158
159
- valid_regexps
159
160
# - void_checks # not yet tested
160
161
- public_member_api_docs
162
+ - require_trailing_commas
Original file line number Diff line number Diff line change @@ -22,11 +22,13 @@ void main() {
22
22
logger = FLILogger (false );
23
23
mockGenerator = MockIconGenerator ();
24
24
when (mockGenerator.platformName).thenReturn ('Mock' );
25
- when (mockGenerator.context).thenReturn (IconGeneratorContext (
26
- config: mockFLIConfig,
27
- prefixPath: prefixPath,
28
- logger: logger,
29
- ));
25
+ when (mockGenerator.context).thenReturn (
26
+ IconGeneratorContext (
27
+ config: mockFLIConfig,
28
+ prefixPath: prefixPath,
29
+ logger: logger,
30
+ ),
31
+ );
30
32
});
31
33
test ('should execute createIcons() when validateRequiremnts() returns true' , () {
32
34
when (mockGenerator.validateRequirements ()).thenReturn (true );
You can’t perform that action at this time.
0 commit comments