Security News
GitHub Removes Malicious Pull Requests Targeting Open Source Repositories
GitHub removed 27 malicious pull requests attempting to inject harmful code across multiple open source repositories, in another round of low-effort attacks.
@karatechops/project-scripts
Advanced tools
Commonly used scripts to bootstrap your project. This package currently supports eslint and prettier. Jest support is currently on the roadmap.
.eslintrc.js
in your project's root folderconst scripts = require('@karatechops/project-scripts');
module.exports = scripts.eslint;
node_modules/
coverage/
dist/
build/
prod/
out/
.next/
.cache/
public/
yarn.lock
package-lock.json
Prettier requires some setup on your IDE's end. The following instructions are for VS Code users.
Install the Prettier extension from the marketplace.
In your VS Code settings (Preferences -> Settings) click the curly brackets icon in the top right to enable the plain text settings view and add the following:
// Set the default
"editor.formatOnSave": false,
// Enable per-language
"[javascript]": {
"editor.formatOnSave": true
}
Create a .prettierrc.js
in your project's root folder.
Add the following to your prettierrc:
const scripts = require('@karatechops/project-scripts');
module.exports = scripts.prettier;
Create a .prettierignore
in your root folder.
Similarly to eslint's ignore, the contents of this file will depend on your project's structure. Here's a good starting point:
package-lock.json
yarn.lock
.cache
public/
node_modules/
build/
dist/
FAQs
Project scripts
The npm package @karatechops/project-scripts receives a total of 0 weekly downloads. As such, @karatechops/project-scripts popularity was classified as not popular.
We found that @karatechops/project-scripts demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
GitHub removed 27 malicious pull requests attempting to inject harmful code across multiple open source repositories, in another round of low-effort attacks.
Security News
RubyGems.org has added a new "maintainer" role that allows for publishing new versions of gems. This new permission type is aimed at improving security for gem owners and the service overall.
Security News
Node.js will be enforcing stricter semver-major PR policies a month before major releases to enhance stability and ensure reliable release candidates.