Shared eslint configuration to be used in Dagster apps.
yarn -D add @dagster-io/eslint-config
// .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.