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
lint-file
Currently, reuse lint-file only checks if the file is covered by some REUSE tags. Which is a great feature!
reuse lint-file
What would be even better though is if it could output which REUSE tags (and ideally where they came from) apply to the file.
Use case:
REUSE.toml
*.txt
docs/**/*.txt
Another use case:
cardinality
In both cases I want to know which license (and copyright holder) the file docs/bla/toot.txt is under.
docs/bla/toot.txt
Relevant: #1055 #1068
More time- and resource-intense workaround (faster with rg, but works with grep too):
rg
grep
reuse spdx > tmp_reuse.spdx rg "docs/bla/toot.txt" tmp_reuse.spdx --after-context=6 --before-context=1
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Currently,
reuse lint-file
only checks if the file is covered by some REUSE tags. Which is a great feature!What would be even better though is if it could output which REUSE tags (and ideally where they came from) apply to the file.
Use case:
REUSE.toml
for all*.txt
files to say these files are under CC0-1.0REUSE.toml
(let’s keep it simple) for alldocs/**/*.txt
to say those specifically are under CC-BY-SA-4.0Another use case:
cardinality
setting inREUSE.toml
affects the output.In both cases I want to know which license (and copyright holder) the file
docs/bla/toot.txt
is under.Relevant:
#1055
#1068
More time- and resource-intense workaround (faster with
rg
, but works withgrep
too):The text was updated successfully, but these errors were encountered: