@@ -25,27 +25,27 @@ class _FakeDirectoryGeneratorTarget extends Fake
2525 implements DirectoryGeneratorTarget {}
2626
2727final expectedUsage = [
28- '''
29- Generate a Very Good Flutter plugin.
30-
31- Usage: very_good create flutter_plugin <project-name> [arguments]
32- -h, --help Print this usage information.
33- -o, --output-directory The desired output directory when creating a new project.
34- --description The description for this new project.
35- (defaults to "A Very Good Project created by Very Good CLI.")
36- --org-name The organization for this new project.
37- (defaults to "com.example.verygoodcore")
38- --publishable Whether the generated project is intended to be published.
39- --platforms The platforms supported by the plugin. By default, all platforms are enabled. Example: --platforms=android,ios
40-
41- [android] (default) The plugin supports the Android platform.
42- [ios] (default) The plugin supports the iOS platform.
43- [linux ] (default) The plugin supports the Linux platform.
44- [macos ] (default) The plugin supports the macOS platform.
45- [web ] (default) The plugin supports the Web platform.
46- [windows] (default) The plugin supports the Windows platform.
47-
48- Run "very_good help" to see global options.''' ,
28+ // ignore: no_adjacent_strings_in_list
29+ ' Generate a Very Good Flutter plugin.\n '
30+ ' \n '
31+ ' Usage: very_good create flutter_plugin <project-name> [arguments]\n '
32+ ' -h, --help Print this usage information.\n '
33+ ''' -o, --output-directory The desired output directory when creating a new project.\n '''
34+ ' --description The description for this new project.\n '
35+ ''' (defaults to "A Very Good Project created by Very Good CLI.")\n '''
36+ ''' --org-name The organization for this new project.\n '''
37+ ''' (defaults to "com.example.verygoodcore")\n '''
38+ ''' --publishable Whether the generated project is intended to be published.\n '''
39+ ''' --platforms The platforms supported by the plugin. By default, all platforms are enabled. Example: --platforms=android,ios\n '''
40+ ' \n '
41+ ''' [android] (default) The plugin supports the Android platform.\n '''
42+ ' [ios] (default) The plugin supports the iOS platform.\n '
43+ ' [web ] (default) The plugin supports the Web platform.\n '
44+ ''' [linux ] (default) The plugin supports the Linux platform.\n '''
45+ ''' [macos ] (default) The plugin supports the macOS platform.\n '''
46+ ''' [windows] (default) The plugin supports the Windows platform.\n '''
47+ ' \n '
48+ ' Run "very_good help" to see global options.'
4949];
5050
5151const pubspec = '''
0 commit comments