1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27
|
Description: prepare for ajv 8
Author: Yadd <yadd@debian.org>
Forwarded: no
Last-Update: 2023-12-12
--- a/lib/rules/meta-property-ordering.js
+++ b/lib/rules/meta-property-ordering.js
@@ -21,7 +21,7 @@
fixable: 'code',
schema: [{
type: 'array',
- elements: { type: 'string' },
+ items: { type: 'string' },
}],
},
--- a/lib/rules/test-case-property-ordering.js
+++ b/lib/rules/test-case-property-ordering.js
@@ -22,7 +22,7 @@
fixable: 'code',
schema: [{
type: 'array',
- elements: { type: 'string' },
+ items: { type: 'string' },
}],
},
|