We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
I think it would be useful if reuse lint has an option to verify that contents of the license file is valid.
reuse lint
This means that an error will be returned in the following cases:
GPL-3.0-or-later.txt
Apache-2.0.txt
MPL-2.0
However, I think this feature should be an option since it's not always possible to correctly guess the contents of the license file.
The text was updated successfully, but these errors were encountered:
I think this is a great idea!
Just yesterday I ran into a surprise whereupon reuse download --all, I ended up with two empty license files in the LICENSES/ folder.
reuse download --all
LICENSES/
I’ve half a mind that it would make sense to enable it by default.
Any licenses that do not start with LicenseRef- are by definition part of the SPDX License List and correspond to the canonical plaintext versions from https://github.com/spdx/license-list-data/tree/main/text. So testing that (or with more work even against the templates) should be doable, I think.
LicenseRef-
Sorry, something went wrong.
No branches or pull requests
I think it would be useful if
reuse lint
has an option to verify that contents of the license file is valid.This means that an error will be returned in the following cases:
GPL-3.0-or-later.txt
is an empty license file.Apache-2.0.txt
isMPL-2.0
.However, I think this feature should be an option since it's not always possible to correctly guess the contents of the license file.
The text was updated successfully, but these errors were encountered: