Security News
PyPI Introduces Digital Attestations to Strengthen Python Package Security
PyPI now supports digital attestations, enhancing security and trust by allowing package maintainers to verify the authenticity of Python packages.
eslint-config-humanmade
Advanced tools
Human Made coding standards for JavaScript.
This package is an ESLint shareable configuration, and requires babel-eslint
, eslint
, eslint-config-react-app
, eslint-plugin-flowtype
, eslint-plugin-import
, eslint-plugin-jsx-a11y
, eslint-plugin-react
.
To install this config and the peerDependencies when using npm 5+:
npx install-peerdeps --dev eslint-config-humanmade@latest
(Thanks to Airbnb's package for the command.)
You can then use it directly on the command line:
eslint -c humanmade MyFile.js
Alternatively, you can create your own configuration and extend these rules:
extends:
- humanmade
If you desire to use TypeScript for your project, you will need to add another dependency:
npm install --save-dev @typescript-eslint/parser
Once it's installed, update your configuration with the parser
parameter:
parser: "@typescript-eslint/parser"
extends:
- humanmade
When installing globally, you need to ensure the peer dependencies are also installed globally.
Run the same command as above, but instead with --global
:
npx install-peerdeps --global eslint-config-humanmade@latest
This allows you to use eslint -c humanmade MyFile.js
anywhere on your filesystem.
FAQs
Human Made Coding Standards for JavaScript.
We found that eslint-config-humanmade demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 3 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
PyPI now supports digital attestations, enhancing security and trust by allowing package maintainers to verify the authenticity of Python packages.
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.