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 e333c8f commit 67abceaCopy full SHA for 67abcea
__tests__/index-test.js
@@ -38,3 +38,10 @@ test('schemas', (t) => {
38
39
t.end();
40
});
41
+
42
+test('plugin referentially equal to prevent flat config issues', (t) => {
43
+ for (const config in Object.keys(plugin.flatConfigs) {
44
+ t.equal(plugin, config.plugins['jsx-a11y'], `${config.name}'s plugin reference is referentially equal to the top-level export`);
45
+ }
46
+ t.end();
47
+});
0 commit comments