Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

eslint-plugin-goodeggs

Package Overview
Dependencies
Maintainers
2
Versions
95
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

eslint-plugin-goodeggs

An eslint plugin containing linter rules specific to Good Eggs.

  • 15.0.1
  • latest
  • Source
  • npm
  • Socket score

Version published
Weekly downloads
106
decreased by-91.6%
Maintainers
2
Weekly downloads
 
Created
Source

eslint-plugin-goodeggs

A shared ESLint plugin and configurations used by Good Eggs projects.

Installation

  1. Install the plugin via yarn add --dev eslint-plugin-goodeggs

  2. 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.

  3. 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.

  1. Install our shared Prettier configuration via yarn add --dev @goodeggs/prettier-config and create a Prettier configuration file at .prettierrc.js
module.exports = require('@goodeggs/prettier-config');
  1. Add linting scripts to your project's 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"
}

Editor Plugins

You'll likely want to enable an ESLint editor integration for your editor so your code is automatically formatted on save.

Use With 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',
  },
};

Releasing

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

FAQs

Package last updated on 10 Oct 2022

Did you know?

Socket

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.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc