Skip to content

Commit 031bb87

Browse files
committed
fix: do not include prefer-query-matchers by default
1 parent 4d83231 commit 031bb87

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

lib/rules/prefer-query-matchers.ts

+5-5
Original file line numberDiff line numberDiff line change
@@ -21,11 +21,11 @@ export default createTestingLibraryRule<Options, MessageIds>({
2121
description:
2222
'Ensure the configured `get*`/`query*` query is used with the corresponding matchers',
2323
recommendedConfig: {
24-
dom: 'error',
25-
angular: 'error',
26-
react: 'error',
27-
vue: 'error',
28-
marko: 'error',
24+
dom: false,
25+
angular: false,
26+
react: false,
27+
vue: false,
28+
marko: false,
2929
},
3030
},
3131
messages: {

0 commit comments

Comments
 (0)