-
-
Notifications
You must be signed in to change notification settings - Fork 595
Add basic npm overrides parsing to package.json #4130
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
Open
divizbansal
wants to merge
2
commits into
aboutcode-org:develop
Choose a base branch
from
divizbansal:npm-overrides-support
base: develop
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Changes from all commits
Commits
Show all changes
2 commits
Select commit
Hold shift + click to select a range
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
38 changes: 19 additions & 19 deletions
38
tests/licensedcode/data/license_db/license_dump/bash-exception-gpl.LICENSE
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,20 +1,20 @@ | ||
--- | ||
key: bash-exception-gpl | ||
short_name: Bash exception to GPL | ||
name: Bash exception to GPL | ||
category: Copyleft | ||
owner: Free Software Foundation (FSF) | ||
notes: this used with GPL 1.0 and 2.0. It was removed from the V3 text https://git.savannah.gnu.org/cgit/bash.git/commit/COPYING?id=3185942a5234e26ab13fa02f9c51d340cec514f8 | ||
is_exception: yes | ||
spdx_license_key: LicenseRef-scancode-bash-exception-gpl-2.0 | ||
text_urls: | ||
- https://git.savannah.gnu.org/cgit/bash.git/plain/COPYING?h=bash-3.0-rc1&id=dd9e6dfa23d0dae4888f11fb8c6a27bc36d1b283 | ||
--- | ||
|
||
The Free Software Foundation has exempted Bash from the requirement of | ||
Paragraph 2c of the General Public License. This is to say, there is | ||
no requirement for Bash to print a notice when it is started | ||
interactively in the usual way. We made this exception because users | ||
and standards expect shells not to print such messages. This | ||
exception applies to any program that serves as a shell and that is | ||
--- | ||
key: bash-exception-gpl | ||
short_name: Bash exception to GPL | ||
name: Bash exception to GPL | ||
category: Copyleft | ||
owner: Free Software Foundation (FSF) | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. These changes are not related to the issue, please remove these. Probably caused by your IDE settings |
||
notes: this used with GPL 1.0 and 2.0. It was removed from the V3 text https://git.savannah.gnu.org/cgit/bash.git/commit/COPYING?id=3185942a5234e26ab13fa02f9c51d340cec514f8 | ||
is_exception: yes | ||
spdx_license_key: LicenseRef-scancode-bash-exception-gpl-2.0 | ||
text_urls: | ||
- https://git.savannah.gnu.org/cgit/bash.git/plain/COPYING?h=bash-3.0-rc1&id=dd9e6dfa23d0dae4888f11fb8c6a27bc36d1b283 | ||
--- | ||
The Free Software Foundation has exempted Bash from the requirement of | ||
Paragraph 2c of the General Public License. This is to say, there is | ||
no requirement for Bash to print a notice when it is started | ||
interactively in the usual way. We made this exception because users | ||
and standards expect shells not to print such messages. This | ||
exception applies to any program that serves as a shell and that is | ||
based primarily on Bash as opposed to other GNU software. |
Oops, something went wrong.
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This is okay as a start but we need to do a bit more here.
See the go replace directives PR and reviews which is a similar issue: #3693 (comment)