Security News
Bun 1.2 Released with 90% Node.js Compatibility and Built-in S3 Object Support
Bun 1.2 enhances its JavaScript runtime with 90% Node.js compatibility, built-in S3 and Postgres support, HTML Imports, and faster, cloud-first performance.
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 106 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.
Security News
Bun 1.2 enhances its JavaScript runtime with 90% Node.js compatibility, built-in S3 and Postgres support, HTML Imports, and faster, cloud-first performance.
Security News
Biden's executive order pushes for AI-driven cybersecurity, software supply chain transparency, and stronger protections for federal and open source systems.
Security News
Fluent Assertions is facing backlash after dropping the Apache license for a commercial model, leaving users blindsided and questioning contributor rights.