Skip to content
Merged
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
Original file line number Diff line number Diff line change
Expand Up @@ -60,11 +60,11 @@ class PackagesCheckLicensesCommand extends Command<int> {
)
..addMultiOption(
'allowed',
help: 'Whitelist of allowed licenses.',
help: 'Only allow the use of certain licenses.',
)
..addMultiOption(
'forbidden',
help: 'Blacklist of not allowed licenses.',
help: 'Deny the use of certain licenses.',
);
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -25,8 +25,8 @@ const _expectedPackagesCheckLicensesUsage = [
''' [direct-main] (default) Check for direct main dependencies.\n'''
''' [transitive] Check for transitive dependencies.\n'''
'\n'
' --allowed Whitelist of allowed licenses.\n'
''' --forbidden Blacklist of not allowed licenses.\n'''
''' --allowed Only allow the use of certain licenses.\n'''
''' --forbidden Deny the use of certain licenses.\n'''
'\n'
'Run "very_good help" to see global options.'
];
Expand Down