refactor: Added and applied require_trailing_commas linter rule
This commit is contained in:
parent
adb3f766e5
commit
ec7acc5385
112 changed files with 3466 additions and 2855 deletions
|
|
@ -15,8 +15,11 @@ void main() async {
|
|||
final commands = (await prepareTestClient()).commands.keys;
|
||||
final missing = commands.where((c) => !translated.contains(c)).toList();
|
||||
|
||||
expect(0, missing.length,
|
||||
reason:
|
||||
'missing hints for $missing\nAdding hints? See scripts/generate_command_hints_glue.sh');
|
||||
expect(
|
||||
0,
|
||||
missing.length,
|
||||
reason:
|
||||
'missing hints for $missing\nAdding hints? See scripts/generate_command_hints_glue.sh',
|
||||
);
|
||||
});
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue