Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion lib/src/intl_suggestors/intl_messages.dart
Original file line number Diff line number Diff line change
Expand Up @@ -152,7 +152,7 @@ Attempting to add a different message with the same name:
static String prologueFor(String className) =>
'''import 'package:${w_intl}/intl_wrapper.dart';

//ignore: avoid_classes_with_only_static_members
//ignore_for_file: avoid_classes_with_only_static_members
//ignore_for_file: unnecessary_brace_in_string_interps

class $className {''';
Expand Down
2 changes: 1 addition & 1 deletion test/executables/intl_message_migration_test.dart
Original file line number Diff line number Diff line change
Expand Up @@ -317,7 +317,7 @@ usage() => (mui.Button()..aria.label=TestProjectIntl.sortsLater)(TestProjectIntl
d.file('test_project_intl.dart', /*language=dart*/ '''
import 'package:${intlImport}';

//ignore: avoid_classes_with_only_static_members
//ignore_for_file: avoid_classes_with_only_static_members
//ignore_for_file: unnecessary_brace_in_string_interps

class TestProjectIntl {
Expand Down
2 changes: 1 addition & 1 deletion test/intl_suggestors/intl_messages_test.dart
Original file line number Diff line number Diff line change
Expand Up @@ -153,7 +153,7 @@ String wIntl = 'w_intl';
String expectedFile(String methods) => '''
import 'package:${wIntl}/intl_wrapper.dart';

//ignore: avoid_classes_with_only_static_members
//ignore_for_file: avoid_classes_with_only_static_members
//ignore_for_file: unnecessary_brace_in_string_interps

class TestProjectIntl {${methods.isNotEmpty ? '\n' : ''}$methods
Expand Down