-
Notifications
You must be signed in to change notification settings - Fork 352
Plugin display name chores #10190
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Plugin display name chores #10190
Conversation
5e50048
to
f0f1ecb
Compare
Codecov ReportAll modified and coverable lines are covered by tests ✅
Additional details and impacted files@@ Coverage Diff @@
## main #10190 +/- ##
=========================================
Coverage 56.43% 56.43%
+ Complexity 1606 1604 -2
=========================================
Files 331 331
Lines 12243 12243
Branches 1135 1135
=========================================
Hits 6909 6909
Misses 4887 4887
Partials 447 447
Flags with carried forward coverage won't be shown. Click here to find out more. ☔ View full report in Codecov by Sentry. 🚀 New features to boost your workflow:
|
...-configuration-providers/ort-config/src/main/kotlin/OrtConfigPackageConfigurationProvider.kt
Outdated
Show resolved
Hide resolved
...ns/package-curation-providers/ort-config/src/main/kotlin/OrtConfigPackageCurationProvider.kt
Outdated
Show resolved
Hide resolved
2f92694
to
747d22c
Compare
factory = OrtCommandFactory::class | ||
) | ||
class AdvisorCommand(descriptor: PluginDescriptor = AdvisorCommandFactory.descriptor) : OrtCommand(descriptor) { | ||
class AdviseCommand(descriptor: PluginDescriptor = AdviseCommandFactory.descriptor) : OrtCommand(descriptor) { |
Check warning
Code scanning / QDJVMC
Unused symbol
factory = OrtCommandFactory::class | ||
) | ||
class AnalyzerCommand(descriptor: PluginDescriptor = AnalyzerCommandFactory.descriptor) : OrtCommand(descriptor) { | ||
class AnalyzeCommand(descriptor: PluginDescriptor = AnalyzeCommandFactory.descriptor) : OrtCommand(descriptor) { |
Check warning
Code scanning / QDJVMC
Unused symbol
factory = OrtCommandFactory::class | ||
) | ||
class DownloaderCommand(descriptor: PluginDescriptor = DownloaderCommandFactory.descriptor) : OrtCommand(descriptor) { | ||
class DownloadCommand(descriptor: PluginDescriptor = DownloadCommandFactory.descriptor) : OrtCommand(descriptor) { |
Check warning
Code scanning / QDJVMC
Unused symbol
factory = OrtCommandFactory::class | ||
) | ||
class NotifierCommand(descriptor: PluginDescriptor = NotifierCommandFactory.descriptor) : OrtCommand(descriptor) { | ||
class NotifyCommand(descriptor: PluginDescriptor = NotifyCommandFactory.descriptor) : OrtCommand(descriptor) { |
Check warning
Code scanning / QDJVMC
Unused symbol
factory = OrtCommandFactory::class | ||
) | ||
class ReporterCommand(descriptor: PluginDescriptor = ReporterCommandFactory.descriptor) : OrtCommand(descriptor) { | ||
class ReportCommand(descriptor: PluginDescriptor = ReportCommandFactory.descriptor) : OrtCommand(descriptor) { |
Check warning
Code scanning / QDJVMC
Unused symbol
factory = OrtCommandFactory::class | ||
) | ||
class ScannerCommand(descriptor: PluginDescriptor = ScannerCommandFactory.descriptor) : OrtCommand(descriptor) { | ||
class ScanCommand(descriptor: PluginDescriptor = ScanCommandFactory.descriptor) : OrtCommand(descriptor) { |
Check warning
Code scanning / QDJVMC
Unused symbol
Pull request was converted to draft
This comment was marked as outdated.
This comment was marked as outdated.
This aligns plugin display names on shorter names. While at it, slightly improve some display names, e.g. by spelling out "Dir" as "Directory". Signed-off-by: Sebastian Schuberth <sebastian@doubleopen.org>
Capitalize them and make longer names more readable. Signed-off-by: Sebastian Schuberth <sebastian@doubleopen.org>
747d22c
to
80aba1d
Compare
Merging early as all relevant checks have passed. |
Please have a look at the individual commit messages for the details.