1.0.18 • Published 8 months ago

@dagster-io/eslint-config v1.0.18

Weekly downloads
-
License
Apache-2.0
Repository
-
Last release
8 months ago

@dagster-io/eslint-config

Shared eslint configuration to be used in Dagster apps.

Usage

1. Install

yarn -D add @dagster-io/eslint-config

2. Add to your project's eslint configuration

// .eslintrc.js
module.exports = {
  extends: ['@dagster-io/eslint-config'],
};

If you are extending other configurations, put those first.

// .eslintrc.js
module.exports = {
  extends: ['some-other-config', '@dagster-io/eslint-config'],
};

You can add other rules and settings to your .eslintrc as needed.