
Research
/Security News
Weaponizing Discord for Command and Control Across npm, PyPI, and RubyGems.org
Socket researchers uncover how threat actors weaponize Discord across the npm, PyPI, and RubyGems ecosystems to exfiltrate sensitive data.
eslint-plugin-goodeggs
Advanced tools
An eslint plugin containing linter rules specific to Good Eggs.
A shared ESLint plugin and configurations used by Good Eggs projects.
Install the plugin via yarn add --dev eslint-plugin-goodeggs
Install all of the peer dependencies listed in package.json#peerDependencies
, making sure you satisfy the peer dependencies fully by using the specified package version ranges.
Create an ESLint configuration file at .eslintrc.js
:
module.exports = {
extends: ['plugin:goodeggs/recommended'],
};
If your project uses Jest or Mocha, or is written in TypeScript, you'll want to add additional presets to the extends
array. See src/config/index.js
for a full list of configurations.
yarn add --dev @goodeggs/prettier-config
and create a Prettier configuration file at .prettierrc.js
module.exports = require('@goodeggs/prettier-config');
package.json
:"scripts": {
"lint": "yarn run lint:base .",
"lint:base": "eslint --ext .js,.jsx,.ts,.tsx --cache --report-unused-disable-directives",
"lint:fix": "yarn run lint:fix:base .",
"lint:fix:base": "yarn run lint:base --fix"
}
You'll likely want to enable an ESLint editor integration for your editor so your code is automatically formatted on save.
lint-staged
Consider using this setup in conjunction with lint-staged and husky to ensure that linting is run on staged files prior to commit.
For example, the following configuration files will run lint and fix any fixable errors prior to commit:
// lint-staged.config.js
module.exports = {
'*.{js,jsx,ts,tsx}': 'yarn run lint:fix:base',
};
// .huskyrc.js
module.exports = {
hooks: {
'pre-commit': 'lint-staged',
},
};
To release a new version of this module, use yarn to bump the version in package.json
and create a
git tag, then push. This will automatically get published to the NPM registry via CI.
yarn version --new-version=<major|minor|patch|premajor|preminor|prepatch>
git push --follow-tags
v15.0.1
import/extensions
: see https://github.com/goodeggs/eslint-plugin-goodeggs/pull/987FAQs
An eslint plugin containing linter rules specific to Good Eggs.
The npm package eslint-plugin-goodeggs receives a total of 663 weekly downloads. As such, eslint-plugin-goodeggs popularity was classified as not popular.
We found that eslint-plugin-goodeggs demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 2 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.
Research
/Security News
Socket researchers uncover how threat actors weaponize Discord across the npm, PyPI, and RubyGems ecosystems to exfiltrate sensitive data.
Security News
Socket now integrates with Bun 1.3’s Security Scanner API to block risky packages at install time and enforce your organization’s policies in local dev and CI.
Research
The Socket Threat Research Team is tracking weekly intrusions into the npm registry that follow a repeatable adversarial playbook used by North Korean state-sponsored actors.