We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a1b5f4c commit e7bb305Copy full SHA for e7bb305
src/index.ts
@@ -55,7 +55,7 @@ function createPluginLegacyConfigs() {
55
};
56
}
57
58
-const testingLibraryPlugin = {
+const testingLibraryPlugin: ESLint.Plugin = {
59
meta: {
60
name: packageName,
61
version: packageVersion,
@@ -65,6 +65,6 @@ const testingLibraryPlugin = {
65
...createPluginFlatConfigs(),
66
...createPluginLegacyConfigs(),
67
} satisfies PluginConfigs,
68
-} as const satisfies ESLint.Plugin;
+};
69
70
export default testingLibraryPlugin;
0 commit comments