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.
eslint-config-ndustrial
Advanced tools
Common eslint configuration for all of ndustrial.io's node applications
Common eslint configuration for all of ndustrial.io's node applications
You can install this module through the regular NPM repository by using the snippet below:
npm install --save-dev eslint-config-ndustrial
or by adding this line to devDependencies
in your package.json
file.
"eslint-config-ndustrial": "^1.0.0",
Once that is installed, create an .eslintrc.json
file in your root directory and add the following line:
{ "extends": "ndustrial"}
From there, you can run eslint in your terminal with the command eslint **/*.js
, or add that line to your package.json scripts as shown below:
"scripts": {
"start": "./node_modules/.bin/nodemon server.js",
"test": "npm run lint",
"lint": "eslint **/*.js"
}
Once it is added to your package.json
file, you can just run npm run lint
.
FAQs
ndustrial.io's ESLint configuration
The npm package eslint-config-ndustrial receives a total of 6 weekly downloads. As such, eslint-config-ndustrial popularity was classified as not popular.
We found that eslint-config-ndustrial demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 14 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.