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.
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
docs: v1 secure coding guidelines #58
docs: v1 secure coding guidelines #58
Changes from all commits
66964df
4423d0d
94a0787
ff8b023
dcf226b
4afebca
5c9f367
2154c1d
a84e379
272b61c
41fb22c
1eb04da
98bdca2
b86b880
9ac6a74
d2fbfe6
e6dcbd4
f49d9a0
01bc5a9
31907e5
000b006
0cadbe7
88a6b2a
ae5a14d
3e87345
567858b
ed1144f
438ca29
ff1eac2
b30197b
704f165
e2a3cc5
43e5282
3793dd0
62164d7
c4dc1d8
3221913
c4805ad
a684063
6bf4c97
aad52de
0162d18
ece56ba
47d7ffb
3f7883e
9716dc6
File filter
Filter by extension
Conversations
Jump to
There are no files selected for viewing
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.
allow-scripts setup
adds that dependency. Also, yarn 3 and 4 will not fail the entire install process because they swallow errors.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.
Ah I see, I hadn't realized that about Yarn v3/v4. I guess your point here is that it'd be safer to advise using
allow-scripts setup
because users might fail to properly disable install scripts in the package manager otherwise, is that correct? Just wanted to confirm that settingignore-scripts
is also something handled by the setup script.