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.
@limetech/eslint-config
Advanced tools
Reusable lint rules for use in other packages.
Install using npm:
npm i -D @limetech/eslint-config
Then put a file called .eslintrc.js
in your package root, with the following
content:
/* eslint-env node */
module.exports = {
extends: ['@limetech/eslint-config'],
};
Then either copy the file at node_modules/@limetech/eslint-config/.prettierrc
to your package root, or create a symlink called .prettierrc
in the package
root, pointing to node_modules/@limetech/eslint-config/.prettierrc
.
Finally, add a script for running eslint to your package.json
, for example:
{
…
"scripts": {
"lint": "eslint \"**/*.{ts,tsx,js}\" --max-warnings=0",
"lint:fix": "eslint \"**/*.{ts,tsx,js}\" --fix --max-warnings=0"
},
}
You can then use npm run lint
in your CI workflows, as it will fail on any
warnings or errors. On your own machine, you would typically run
npm run lint:fix
instead, to have eslint automatically fix as many of the
problems as possible, and only output warnings or errors for problems that
cannot be fixed automatically.
FAQs
Reusable lint rules for use in other packages.
We found that @limetech/eslint-config demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 4 open source maintainers 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.