Skip to content
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

fix: broken hyperlink to docs in licensee repo #670

Merged
merged 2 commits into from
Jun 29, 2023
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
4 changes: 2 additions & 2 deletions docs/configuration/customizing_licensee.md
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
# Customize Licensee's behavior

Licensed uses [Licensee](https://github.com/licensee/licensee) to detect and evaluate OSS licenses for project dependencies found during source enumeration. Licensed can optionally [customize Licensee's behavior](https://github.com/licensee/licensee/blob/jonabc-patch-1/docs/customizing.md#customizing-licensees-behavior) based on options set in the configuration file.
Licensed uses [Licensee](https://github.com/licensee/licensee) to detect and evaluate OSS licenses for project dependencies found during source enumeration. Licensed can optionally [customize Licensee's behavior](https://github.com/licensee/licensee/blob/main/docs/customizing.md#customizing-licensees-behavior) based on options set in the configuration file.

**NOTE** Matching licenses based on package manager metadata and README references is always enabled and cannot currently be configured.

```yml
licensee:
# the confidence threshold is an integer between 1 and 100. the value represents
# the minimum percentage confidence that Licensee must have to report a matched license
# https://github.com/licensee/licensee/blob/master/docs/customizing.md#adjusting-the-confidence-threshold
# https://github.com/licensee/licensee/blob/main/docs/customizing.md#adjusting-the-confidence-threshold
confidence_threshold: 90 # default value: 98
```
2 changes: 1 addition & 1 deletion script/source-setup/bundler
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
set -e

if [ -z "$(which bundle)" ]; then
echo "A local bundler instalation is required for bundler development." >&2
echo "A local bundler installation is required for bundler development." >&2
exit 127
fi

Expand Down
Loading