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-jane
Advanced tools
Use eslint-plugin-jane.
Shared eslint config for front-end projects at Jane.
npm i -D eslint-config-jane
You'll also need to install some plugins (peerDependencies
), at least until
there's some sort of resolution for this
issue:
npm i -D babel-eslint eslint-plugin-babel eslint-plugin-promise eslint-plugin-import eslint-plugin-unicorn
.
Optionally, you can also install any or all of:
eslint-plugin-jest
eslint-plugin-jsx-a11y
eslint-plugin-prettier
eslint-plugin-react
If they're installed, their rules will be used. If eslint-plugin-prettier
is
installed, our style rules are removed.
.eslintrc
{
"root": true,
"extends": "eslint-config-jane"
// any custom configs
}
.prettierrc.js
module.exports = require('eslint-config-jane/prettier')
Our rules are heavily based on Standard.
Most rules only warn. Exceptions (rules that error):
comma-dangle
: es5 compatibleeol-last
indent
: 2, SwitchCase
1new-cap
: newIsCap
true, capIsNew
falseno-duplicate-imports
no-eval
no-extend-native
no-global-assign
no-mixed-tabs-and-spaces
no-tabs
no-undef
no-undef-init
no-with
quotes
: single, avoidEscape trueunicode-bom
: neverunicorn/filename-case
: kebabFAQs
Deprecated: use eslint-plugin-jane.
We found that eslint-config-jane demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 8 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.