Skip to content

Commit e7bb305

Browse files
committed
chore: make ESLint plugin type notation explicit
1 parent a1b5f4c commit e7bb305

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/index.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ function createPluginLegacyConfigs() {
5555
};
5656
}
5757

58-
const testingLibraryPlugin = {
58+
const testingLibraryPlugin: ESLint.Plugin = {
5959
meta: {
6060
name: packageName,
6161
version: packageVersion,
@@ -65,6 +65,6 @@ const testingLibraryPlugin = {
6565
...createPluginFlatConfigs(),
6666
...createPluginLegacyConfigs(),
6767
} satisfies PluginConfigs,
68-
} as const satisfies ESLint.Plugin;
68+
};
6969

7070
export default testingLibraryPlugin;

0 commit comments

Comments
 (0)