1.0.15 • Published 15 days ago

@dagster-io/eslint-config v1.0.15

Weekly downloads
-
License
Apache-2.0
Repository
-
Last release
15 days 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.