Skip to content

Commit 7005279

Browse files
fix: export default under a helpful name
Avoid getting caught by import-x/no-rename-default.
1 parent ecf1919 commit 7005279

File tree

1 file changed

+7
-7
lines changed

1 file changed

+7
-7
lines changed

src/index.ts

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -91,11 +91,11 @@ const plugin = {
9191
},
9292
} satisfies TSESLint.FlatConfig.Plugin;
9393

94-
const configs = {
95-
recommended: createRecommendedConfig(plugin),
96-
} satisfies TSESLint.FlatConfig.SharedConfigs;
97-
98-
export default {
94+
const rxjsX = {
9995
...plugin,
100-
configs,
101-
};
96+
configs: {
97+
recommended: createRecommendedConfig(plugin),
98+
},
99+
} satisfies TSESLint.FlatConfig.Plugin;
100+
101+
export default rxjsX;

0 commit comments

Comments
 (0)