-
Notifications
You must be signed in to change notification settings - Fork 3
fix: yarn config #200
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: yarn config #200
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,7 +1,8 @@ | ||
| defaultSemverRangePrefix: '' | ||
|
|
||
| nodeLinker: node-modules | ||
| enableScripts: false | ||
|
|
||
| yarnPath: .yarn/releases/yarn-4.10.3.cjs | ||
| nodeLinker: node-modules | ||
|
|
||
| enableScripts: false | ||
| npmMinimalAgeGate: 10080 | ||
|
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. An npmMinimalAgeGate: 1440 |
||
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.
Setting
enableScripts: falsedisables thepostinstallscript inpackage.json, which preventshuskyfrom automatically setting up git hooks for developers. This means theprecommithook (which runscodestyle) will not be initialized on fresh installs. If this is a deliberate security choice, consider documenting a manual setup step for contributors (e.g., runningyarn huskymanually).