Skip to content

Commit

Permalink
feat(eslint-plugin): include operators for ESLint v9 config
Browse files Browse the repository at this point in the history
  • Loading branch information
timdeschryver committed Jun 5, 2024
1 parent 4d6feda commit 72d12fc
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions modules/eslint-plugin/v9/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,8 @@ import effectsRecommended from '../src/configs/effects-recommended';
import effectsAll from '../src/configs/effects-all';
import componentStoreRecommended from '../src/configs/component-store-recommended';
import componentStoreAll from '../src/configs/component-store-all';
import operatorsRecommended from '../src/configs/operators-recommended';
import operatorsAll from '../src/configs/operators-all';

const meta = { name: packageName, version: packageVersion };

Expand All @@ -32,6 +34,9 @@ const configs = {

componentStoreRecommended: componentStoreRecommended(tsPlugin, parser),
componentStoreAll: componentStoreAll(tsPlugin, parser),

operatorsRecommended: operatorsRecommended(tsPlugin, parser),
operatorsAll: operatorsAll(tsPlugin, parser),
};

/*
Expand Down

0 comments on commit 72d12fc

Please sign in to comment.