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
Some of the gpl1 rules matches very few text and have probability to match real code.
for example:
src/licensedcode/data/rules/gpl-1.0-plus_50.RULE
only contains 'gpl1+'
On some of my scanned code, I have some variable named i_gpl1, which is incremented in a for loop, so several occurence of
i_gpl1++
scancode matches this as gpl-1.0-plus with a score of 100.
I also have another variable named i_gpl2, which also gets incremented, and the rule
src/licensedcode/data/rules/gpl-2.0-plus_188.RULE will match it as gpl-2.0-plus
src/licensedcode/data/rules/gpl-2.0-plus_188.RULE
The text was updated successfully, but these errors were encountered:
This is a good example of bare words detection issues #2403
Sorry, something went wrong.
See also the related issues:
No branches or pull requests
Description
Some of the gpl1 rules matches very few text and have
probability to match real code.
for example:
src/licensedcode/data/rules/gpl-1.0-plus_50.RULE
only contains 'gpl1+'
On some of my scanned code, I have some variable named i_gpl1, which is incremented in a for loop, so several occurence of
i_gpl1++
scancode matches this as gpl-1.0-plus with a score of 100.
I also have another variable named i_gpl2, which also gets incremented, and the rule
src/licensedcode/data/rules/gpl-2.0-plus_188.RULE
will match it as gpl-2.0-plusThe text was updated successfully, but these errors were encountered: