@alexlit/lint-kit 117.2.1 → 117.3.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (162) hide show
  1. package/package.json +1 -1
  2. package/packages/config-eslint/index.js +7 -374
  3. package/packages/config-eslint/legacy.js +3 -0
  4. package/packages/config-eslint/node_modules/@eslint/eslintrc/LICENSE +19 -0
  5. package/packages/config-eslint/node_modules/@eslint/eslintrc/README.md +126 -0
  6. package/packages/config-eslint/node_modules/@eslint/eslintrc/conf/config-schema.js +79 -0
  7. package/packages/config-eslint/node_modules/@eslint/eslintrc/conf/environments.js +215 -0
  8. package/packages/config-eslint/node_modules/@eslint/eslintrc/dist/eslintrc-universal.cjs +1143 -0
  9. package/packages/config-eslint/node_modules/@eslint/eslintrc/dist/eslintrc-universal.cjs.map +1 -0
  10. package/packages/config-eslint/node_modules/@eslint/eslintrc/dist/eslintrc.cjs +4371 -0
  11. package/packages/config-eslint/node_modules/@eslint/eslintrc/dist/eslintrc.cjs.map +1 -0
  12. package/packages/config-eslint/node_modules/@eslint/eslintrc/lib/cascading-config-array-factory.js +532 -0
  13. package/packages/config-eslint/node_modules/@eslint/eslintrc/lib/config-array/config-array.js +510 -0
  14. package/packages/config-eslint/node_modules/@eslint/eslintrc/lib/config-array/config-dependency.js +124 -0
  15. package/packages/config-eslint/node_modules/@eslint/eslintrc/lib/config-array/extracted-config.js +145 -0
  16. package/packages/config-eslint/node_modules/@eslint/eslintrc/lib/config-array/ignore-pattern.js +238 -0
  17. package/packages/config-eslint/node_modules/@eslint/eslintrc/lib/config-array/index.js +19 -0
  18. package/packages/config-eslint/node_modules/@eslint/eslintrc/lib/config-array/override-tester.js +225 -0
  19. package/packages/config-eslint/node_modules/@eslint/eslintrc/lib/config-array-factory.js +1155 -0
  20. package/packages/config-eslint/node_modules/@eslint/eslintrc/lib/flat-compat.js +318 -0
  21. package/packages/config-eslint/node_modules/@eslint/eslintrc/lib/index-universal.js +29 -0
  22. package/packages/config-eslint/node_modules/@eslint/eslintrc/lib/index.js +58 -0
  23. package/packages/config-eslint/node_modules/@eslint/eslintrc/lib/shared/ajv.js +191 -0
  24. package/packages/config-eslint/node_modules/@eslint/eslintrc/lib/shared/config-ops.js +135 -0
  25. package/packages/config-eslint/node_modules/@eslint/eslintrc/lib/shared/config-validator.js +370 -0
  26. package/packages/config-eslint/node_modules/@eslint/eslintrc/lib/shared/deprecation-warnings.js +63 -0
  27. package/packages/config-eslint/node_modules/@eslint/eslintrc/lib/shared/naming.js +96 -0
  28. package/packages/config-eslint/node_modules/@eslint/eslintrc/lib/shared/relative-module-resolver.js +42 -0
  29. package/packages/config-eslint/node_modules/@eslint/eslintrc/lib/shared/types.js +149 -0
  30. package/packages/config-eslint/node_modules/@eslint/eslintrc/package.json +82 -0
  31. package/packages/config-eslint/node_modules/@eslint/eslintrc/universal.js +9 -0
  32. package/packages/config-eslint/node_modules/ajv/.tonic_example.js +20 -0
  33. package/packages/config-eslint/node_modules/ajv/LICENSE +22 -0
  34. package/packages/config-eslint/node_modules/ajv/README.md +1497 -0
  35. package/packages/config-eslint/node_modules/ajv/dist/ajv.bundle.js +7189 -0
  36. package/packages/config-eslint/node_modules/ajv/dist/ajv.min.js +3 -0
  37. package/packages/config-eslint/node_modules/ajv/dist/ajv.min.js.map +1 -0
  38. package/packages/config-eslint/node_modules/ajv/lib/ajv.d.ts +397 -0
  39. package/packages/config-eslint/node_modules/ajv/lib/ajv.js +506 -0
  40. package/packages/config-eslint/node_modules/ajv/lib/cache.js +26 -0
  41. package/packages/config-eslint/node_modules/ajv/lib/compile/async.js +90 -0
  42. package/packages/config-eslint/node_modules/ajv/lib/compile/equal.js +5 -0
  43. package/packages/config-eslint/node_modules/ajv/lib/compile/error_classes.js +34 -0
  44. package/packages/config-eslint/node_modules/ajv/lib/compile/formats.js +142 -0
  45. package/packages/config-eslint/node_modules/ajv/lib/compile/index.js +387 -0
  46. package/packages/config-eslint/node_modules/ajv/lib/compile/resolve.js +270 -0
  47. package/packages/config-eslint/node_modules/ajv/lib/compile/rules.js +66 -0
  48. package/packages/config-eslint/node_modules/ajv/lib/compile/schema_obj.js +9 -0
  49. package/packages/config-eslint/node_modules/ajv/lib/compile/ucs2length.js +20 -0
  50. package/packages/config-eslint/node_modules/ajv/lib/compile/util.js +239 -0
  51. package/packages/config-eslint/node_modules/ajv/lib/data.js +49 -0
  52. package/packages/config-eslint/node_modules/ajv/lib/definition_schema.js +37 -0
  53. package/packages/config-eslint/node_modules/ajv/lib/dot/_limit.jst +113 -0
  54. package/packages/config-eslint/node_modules/ajv/lib/dot/_limitItems.jst +12 -0
  55. package/packages/config-eslint/node_modules/ajv/lib/dot/_limitLength.jst +12 -0
  56. package/packages/config-eslint/node_modules/ajv/lib/dot/_limitProperties.jst +12 -0
  57. package/packages/config-eslint/node_modules/ajv/lib/dot/allOf.jst +32 -0
  58. package/packages/config-eslint/node_modules/ajv/lib/dot/anyOf.jst +46 -0
  59. package/packages/config-eslint/node_modules/ajv/lib/dot/coerce.def +51 -0
  60. package/packages/config-eslint/node_modules/ajv/lib/dot/comment.jst +9 -0
  61. package/packages/config-eslint/node_modules/ajv/lib/dot/const.jst +11 -0
  62. package/packages/config-eslint/node_modules/ajv/lib/dot/contains.jst +55 -0
  63. package/packages/config-eslint/node_modules/ajv/lib/dot/custom.jst +191 -0
  64. package/packages/config-eslint/node_modules/ajv/lib/dot/defaults.def +47 -0
  65. package/packages/config-eslint/node_modules/ajv/lib/dot/definitions.def +203 -0
  66. package/packages/config-eslint/node_modules/ajv/lib/dot/dependencies.jst +79 -0
  67. package/packages/config-eslint/node_modules/ajv/lib/dot/enum.jst +30 -0
  68. package/packages/config-eslint/node_modules/ajv/lib/dot/errors.def +194 -0
  69. package/packages/config-eslint/node_modules/ajv/lib/dot/format.jst +106 -0
  70. package/packages/config-eslint/node_modules/ajv/lib/dot/if.jst +73 -0
  71. package/packages/config-eslint/node_modules/ajv/lib/dot/items.jst +98 -0
  72. package/packages/config-eslint/node_modules/ajv/lib/dot/missing.def +39 -0
  73. package/packages/config-eslint/node_modules/ajv/lib/dot/multipleOf.jst +22 -0
  74. package/packages/config-eslint/node_modules/ajv/lib/dot/not.jst +43 -0
  75. package/packages/config-eslint/node_modules/ajv/lib/dot/oneOf.jst +54 -0
  76. package/packages/config-eslint/node_modules/ajv/lib/dot/pattern.jst +14 -0
  77. package/packages/config-eslint/node_modules/ajv/lib/dot/properties.jst +245 -0
  78. package/packages/config-eslint/node_modules/ajv/lib/dot/propertyNames.jst +52 -0
  79. package/packages/config-eslint/node_modules/ajv/lib/dot/ref.jst +85 -0
  80. package/packages/config-eslint/node_modules/ajv/lib/dot/required.jst +108 -0
  81. package/packages/config-eslint/node_modules/ajv/lib/dot/uniqueItems.jst +62 -0
  82. package/packages/config-eslint/node_modules/ajv/lib/dot/validate.jst +276 -0
  83. package/packages/config-eslint/node_modules/ajv/lib/dotjs/README.md +3 -0
  84. package/packages/config-eslint/node_modules/ajv/lib/dotjs/_limit.js +163 -0
  85. package/packages/config-eslint/node_modules/ajv/lib/dotjs/_limitItems.js +80 -0
  86. package/packages/config-eslint/node_modules/ajv/lib/dotjs/_limitLength.js +85 -0
  87. package/packages/config-eslint/node_modules/ajv/lib/dotjs/_limitProperties.js +80 -0
  88. package/packages/config-eslint/node_modules/ajv/lib/dotjs/allOf.js +42 -0
  89. package/packages/config-eslint/node_modules/ajv/lib/dotjs/anyOf.js +73 -0
  90. package/packages/config-eslint/node_modules/ajv/lib/dotjs/comment.js +14 -0
  91. package/packages/config-eslint/node_modules/ajv/lib/dotjs/const.js +56 -0
  92. package/packages/config-eslint/node_modules/ajv/lib/dotjs/contains.js +81 -0
  93. package/packages/config-eslint/node_modules/ajv/lib/dotjs/custom.js +228 -0
  94. package/packages/config-eslint/node_modules/ajv/lib/dotjs/dependencies.js +168 -0
  95. package/packages/config-eslint/node_modules/ajv/lib/dotjs/enum.js +66 -0
  96. package/packages/config-eslint/node_modules/ajv/lib/dotjs/format.js +150 -0
  97. package/packages/config-eslint/node_modules/ajv/lib/dotjs/if.js +103 -0
  98. package/packages/config-eslint/node_modules/ajv/lib/dotjs/index.js +33 -0
  99. package/packages/config-eslint/node_modules/ajv/lib/dotjs/items.js +140 -0
  100. package/packages/config-eslint/node_modules/ajv/lib/dotjs/multipleOf.js +80 -0
  101. package/packages/config-eslint/node_modules/ajv/lib/dotjs/not.js +84 -0
  102. package/packages/config-eslint/node_modules/ajv/lib/dotjs/oneOf.js +73 -0
  103. package/packages/config-eslint/node_modules/ajv/lib/dotjs/pattern.js +75 -0
  104. package/packages/config-eslint/node_modules/ajv/lib/dotjs/properties.js +335 -0
  105. package/packages/config-eslint/node_modules/ajv/lib/dotjs/propertyNames.js +81 -0
  106. package/packages/config-eslint/node_modules/ajv/lib/dotjs/ref.js +124 -0
  107. package/packages/config-eslint/node_modules/ajv/lib/dotjs/required.js +270 -0
  108. package/packages/config-eslint/node_modules/ajv/lib/dotjs/uniqueItems.js +86 -0
  109. package/packages/config-eslint/node_modules/ajv/lib/dotjs/validate.js +482 -0
  110. package/packages/config-eslint/node_modules/ajv/lib/keyword.js +146 -0
  111. package/packages/config-eslint/node_modules/ajv/lib/refs/data.json +17 -0
  112. package/packages/config-eslint/node_modules/ajv/lib/refs/json-schema-draft-04.json +149 -0
  113. package/packages/config-eslint/node_modules/ajv/lib/refs/json-schema-draft-06.json +154 -0
  114. package/packages/config-eslint/node_modules/ajv/lib/refs/json-schema-draft-07.json +168 -0
  115. package/packages/config-eslint/node_modules/ajv/lib/refs/json-schema-secure.json +94 -0
  116. package/packages/config-eslint/node_modules/ajv/package.json +106 -0
  117. package/packages/config-eslint/node_modules/ajv/scripts/.eslintrc.yml +3 -0
  118. package/packages/config-eslint/node_modules/ajv/scripts/bundle.js +61 -0
  119. package/packages/config-eslint/node_modules/ajv/scripts/compile-dots.js +73 -0
  120. package/packages/config-eslint/node_modules/ajv/scripts/info +10 -0
  121. package/packages/config-eslint/node_modules/ajv/scripts/prepare-tests +12 -0
  122. package/packages/config-eslint/node_modules/ajv/scripts/publish-built-version +32 -0
  123. package/packages/config-eslint/node_modules/ajv/scripts/travis-gh-pages +23 -0
  124. package/packages/config-eslint/node_modules/eslint-visitor-keys/LICENSE +201 -0
  125. package/packages/config-eslint/node_modules/eslint-visitor-keys/README.md +105 -0
  126. package/packages/config-eslint/node_modules/eslint-visitor-keys/dist/eslint-visitor-keys.cjs +384 -0
  127. package/packages/config-eslint/node_modules/eslint-visitor-keys/dist/eslint-visitor-keys.d.cts +27 -0
  128. package/packages/config-eslint/node_modules/eslint-visitor-keys/dist/index.d.ts +16 -0
  129. package/packages/config-eslint/node_modules/eslint-visitor-keys/dist/visitor-keys.d.ts +12 -0
  130. package/packages/config-eslint/node_modules/eslint-visitor-keys/lib/index.js +65 -0
  131. package/packages/config-eslint/node_modules/eslint-visitor-keys/lib/visitor-keys.js +315 -0
  132. package/packages/config-eslint/node_modules/eslint-visitor-keys/package.json +74 -0
  133. package/packages/config-eslint/node_modules/espree/LICENSE +25 -0
  134. package/packages/config-eslint/node_modules/espree/README.md +244 -0
  135. package/packages/config-eslint/node_modules/espree/dist/espree.cjs +883 -0
  136. package/packages/config-eslint/node_modules/espree/espree.js +177 -0
  137. package/packages/config-eslint/node_modules/espree/lib/espree.js +349 -0
  138. package/packages/config-eslint/node_modules/espree/lib/features.js +27 -0
  139. package/packages/config-eslint/node_modules/espree/lib/options.js +123 -0
  140. package/packages/config-eslint/node_modules/espree/lib/token-translator.js +263 -0
  141. package/packages/config-eslint/node_modules/espree/lib/version.js +3 -0
  142. package/packages/config-eslint/node_modules/espree/package.json +86 -0
  143. package/packages/config-eslint/node_modules/globals/globals.json +1998 -0
  144. package/packages/config-eslint/node_modules/globals/index.d.ts +2077 -0
  145. package/packages/config-eslint/node_modules/globals/index.js +2 -0
  146. package/packages/config-eslint/node_modules/globals/license +9 -0
  147. package/packages/config-eslint/node_modules/globals/package.json +58 -0
  148. package/packages/config-eslint/node_modules/globals/readme.md +44 -0
  149. package/packages/config-eslint/node_modules/json-schema-traverse/.eslintrc.yml +27 -0
  150. package/packages/config-eslint/node_modules/json-schema-traverse/.travis.yml +8 -0
  151. package/packages/config-eslint/node_modules/json-schema-traverse/LICENSE +21 -0
  152. package/packages/config-eslint/node_modules/json-schema-traverse/README.md +83 -0
  153. package/packages/config-eslint/node_modules/json-schema-traverse/index.js +89 -0
  154. package/packages/config-eslint/node_modules/json-schema-traverse/package.json +43 -0
  155. package/packages/config-eslint/node_modules/json-schema-traverse/spec/.eslintrc.yml +6 -0
  156. package/packages/config-eslint/node_modules/json-schema-traverse/spec/fixtures/schema.js +125 -0
  157. package/packages/config-eslint/node_modules/json-schema-traverse/spec/index.spec.js +171 -0
  158. package/packages/config-eslint/package.json +5 -3
  159. package/packages/config-eslint/plugins/no-await-in-promise.js +2 -2
  160. package/packages/config-eslint/utils/create-config.js +377 -0
  161. package/scripts/lint.eslint.sh +1 -1
  162. package/.eslintrc.cjs +0 -16
@@ -0,0 +1,85 @@
1
+ 'use strict';
2
+ module.exports = function generate__limitLength(it, $keyword, $ruleType) {
3
+ var out = ' ';
4
+ var $lvl = it.level;
5
+ var $dataLvl = it.dataLevel;
6
+ var $schema = it.schema[$keyword];
7
+ var $schemaPath = it.schemaPath + it.util.getProperty($keyword);
8
+ var $errSchemaPath = it.errSchemaPath + '/' + $keyword;
9
+ var $breakOnError = !it.opts.allErrors;
10
+ var $errorKeyword;
11
+ var $data = 'data' + ($dataLvl || '');
12
+ var $isData = it.opts.$data && $schema && $schema.$data,
13
+ $schemaValue;
14
+ if ($isData) {
15
+ out += ' var schema' + ($lvl) + ' = ' + (it.util.getData($schema.$data, $dataLvl, it.dataPathArr)) + '; ';
16
+ $schemaValue = 'schema' + $lvl;
17
+ } else {
18
+ $schemaValue = $schema;
19
+ }
20
+ if (!($isData || typeof $schema == 'number')) {
21
+ throw new Error($keyword + ' must be number');
22
+ }
23
+ var $op = $keyword == 'maxLength' ? '>' : '<';
24
+ out += 'if ( ';
25
+ if ($isData) {
26
+ out += ' (' + ($schemaValue) + ' !== undefined && typeof ' + ($schemaValue) + ' != \'number\') || ';
27
+ }
28
+ if (it.opts.unicode === false) {
29
+ out += ' ' + ($data) + '.length ';
30
+ } else {
31
+ out += ' ucs2length(' + ($data) + ') ';
32
+ }
33
+ out += ' ' + ($op) + ' ' + ($schemaValue) + ') { ';
34
+ var $errorKeyword = $keyword;
35
+ var $$outStack = $$outStack || [];
36
+ $$outStack.push(out);
37
+ out = ''; /* istanbul ignore else */
38
+ if (it.createErrors !== false) {
39
+ out += ' { keyword: \'' + ($errorKeyword || '_limitLength') + '\' , dataPath: (dataPath || \'\') + ' + (it.errorPath) + ' , schemaPath: ' + (it.util.toQuotedString($errSchemaPath)) + ' , params: { limit: ' + ($schemaValue) + ' } ';
40
+ if (it.opts.messages !== false) {
41
+ out += ' , message: \'should NOT be ';
42
+ if ($keyword == 'maxLength') {
43
+ out += 'longer';
44
+ } else {
45
+ out += 'shorter';
46
+ }
47
+ out += ' than ';
48
+ if ($isData) {
49
+ out += '\' + ' + ($schemaValue) + ' + \'';
50
+ } else {
51
+ out += '' + ($schema);
52
+ }
53
+ out += ' characters\' ';
54
+ }
55
+ if (it.opts.verbose) {
56
+ out += ' , schema: ';
57
+ if ($isData) {
58
+ out += 'validate.schema' + ($schemaPath);
59
+ } else {
60
+ out += '' + ($schema);
61
+ }
62
+ out += ' , parentSchema: validate.schema' + (it.schemaPath) + ' , data: ' + ($data) + ' ';
63
+ }
64
+ out += ' } ';
65
+ } else {
66
+ out += ' {} ';
67
+ }
68
+ var __err = out;
69
+ out = $$outStack.pop();
70
+ if (!it.compositeRule && $breakOnError) {
71
+ /* istanbul ignore if */
72
+ if (it.async) {
73
+ out += ' throw new ValidationError([' + (__err) + ']); ';
74
+ } else {
75
+ out += ' validate.errors = [' + (__err) + ']; return false; ';
76
+ }
77
+ } else {
78
+ out += ' var err = ' + (__err) + '; if (vErrors === null) vErrors = [err]; else vErrors.push(err); errors++; ';
79
+ }
80
+ out += '} ';
81
+ if ($breakOnError) {
82
+ out += ' else { ';
83
+ }
84
+ return out;
85
+ }
@@ -0,0 +1,80 @@
1
+ 'use strict';
2
+ module.exports = function generate__limitProperties(it, $keyword, $ruleType) {
3
+ var out = ' ';
4
+ var $lvl = it.level;
5
+ var $dataLvl = it.dataLevel;
6
+ var $schema = it.schema[$keyword];
7
+ var $schemaPath = it.schemaPath + it.util.getProperty($keyword);
8
+ var $errSchemaPath = it.errSchemaPath + '/' + $keyword;
9
+ var $breakOnError = !it.opts.allErrors;
10
+ var $errorKeyword;
11
+ var $data = 'data' + ($dataLvl || '');
12
+ var $isData = it.opts.$data && $schema && $schema.$data,
13
+ $schemaValue;
14
+ if ($isData) {
15
+ out += ' var schema' + ($lvl) + ' = ' + (it.util.getData($schema.$data, $dataLvl, it.dataPathArr)) + '; ';
16
+ $schemaValue = 'schema' + $lvl;
17
+ } else {
18
+ $schemaValue = $schema;
19
+ }
20
+ if (!($isData || typeof $schema == 'number')) {
21
+ throw new Error($keyword + ' must be number');
22
+ }
23
+ var $op = $keyword == 'maxProperties' ? '>' : '<';
24
+ out += 'if ( ';
25
+ if ($isData) {
26
+ out += ' (' + ($schemaValue) + ' !== undefined && typeof ' + ($schemaValue) + ' != \'number\') || ';
27
+ }
28
+ out += ' Object.keys(' + ($data) + ').length ' + ($op) + ' ' + ($schemaValue) + ') { ';
29
+ var $errorKeyword = $keyword;
30
+ var $$outStack = $$outStack || [];
31
+ $$outStack.push(out);
32
+ out = ''; /* istanbul ignore else */
33
+ if (it.createErrors !== false) {
34
+ out += ' { keyword: \'' + ($errorKeyword || '_limitProperties') + '\' , dataPath: (dataPath || \'\') + ' + (it.errorPath) + ' , schemaPath: ' + (it.util.toQuotedString($errSchemaPath)) + ' , params: { limit: ' + ($schemaValue) + ' } ';
35
+ if (it.opts.messages !== false) {
36
+ out += ' , message: \'should NOT have ';
37
+ if ($keyword == 'maxProperties') {
38
+ out += 'more';
39
+ } else {
40
+ out += 'fewer';
41
+ }
42
+ out += ' than ';
43
+ if ($isData) {
44
+ out += '\' + ' + ($schemaValue) + ' + \'';
45
+ } else {
46
+ out += '' + ($schema);
47
+ }
48
+ out += ' properties\' ';
49
+ }
50
+ if (it.opts.verbose) {
51
+ out += ' , schema: ';
52
+ if ($isData) {
53
+ out += 'validate.schema' + ($schemaPath);
54
+ } else {
55
+ out += '' + ($schema);
56
+ }
57
+ out += ' , parentSchema: validate.schema' + (it.schemaPath) + ' , data: ' + ($data) + ' ';
58
+ }
59
+ out += ' } ';
60
+ } else {
61
+ out += ' {} ';
62
+ }
63
+ var __err = out;
64
+ out = $$outStack.pop();
65
+ if (!it.compositeRule && $breakOnError) {
66
+ /* istanbul ignore if */
67
+ if (it.async) {
68
+ out += ' throw new ValidationError([' + (__err) + ']); ';
69
+ } else {
70
+ out += ' validate.errors = [' + (__err) + ']; return false; ';
71
+ }
72
+ } else {
73
+ out += ' var err = ' + (__err) + '; if (vErrors === null) vErrors = [err]; else vErrors.push(err); errors++; ';
74
+ }
75
+ out += '} ';
76
+ if ($breakOnError) {
77
+ out += ' else { ';
78
+ }
79
+ return out;
80
+ }
@@ -0,0 +1,42 @@
1
+ 'use strict';
2
+ module.exports = function generate_allOf(it, $keyword, $ruleType) {
3
+ var out = ' ';
4
+ var $schema = it.schema[$keyword];
5
+ var $schemaPath = it.schemaPath + it.util.getProperty($keyword);
6
+ var $errSchemaPath = it.errSchemaPath + '/' + $keyword;
7
+ var $breakOnError = !it.opts.allErrors;
8
+ var $it = it.util.copy(it);
9
+ var $closingBraces = '';
10
+ $it.level++;
11
+ var $nextValid = 'valid' + $it.level;
12
+ var $currentBaseId = $it.baseId,
13
+ $allSchemasEmpty = true;
14
+ var arr1 = $schema;
15
+ if (arr1) {
16
+ var $sch, $i = -1,
17
+ l1 = arr1.length - 1;
18
+ while ($i < l1) {
19
+ $sch = arr1[$i += 1];
20
+ if ((it.opts.strictKeywords ? (typeof $sch == 'object' && Object.keys($sch).length > 0) || $sch === false : it.util.schemaHasRules($sch, it.RULES.all))) {
21
+ $allSchemasEmpty = false;
22
+ $it.schema = $sch;
23
+ $it.schemaPath = $schemaPath + '[' + $i + ']';
24
+ $it.errSchemaPath = $errSchemaPath + '/' + $i;
25
+ out += ' ' + (it.validate($it)) + ' ';
26
+ $it.baseId = $currentBaseId;
27
+ if ($breakOnError) {
28
+ out += ' if (' + ($nextValid) + ') { ';
29
+ $closingBraces += '}';
30
+ }
31
+ }
32
+ }
33
+ }
34
+ if ($breakOnError) {
35
+ if ($allSchemasEmpty) {
36
+ out += ' if (true) { ';
37
+ } else {
38
+ out += ' ' + ($closingBraces.slice(0, -1)) + ' ';
39
+ }
40
+ }
41
+ return out;
42
+ }
@@ -0,0 +1,73 @@
1
+ 'use strict';
2
+ module.exports = function generate_anyOf(it, $keyword, $ruleType) {
3
+ var out = ' ';
4
+ var $lvl = it.level;
5
+ var $dataLvl = it.dataLevel;
6
+ var $schema = it.schema[$keyword];
7
+ var $schemaPath = it.schemaPath + it.util.getProperty($keyword);
8
+ var $errSchemaPath = it.errSchemaPath + '/' + $keyword;
9
+ var $breakOnError = !it.opts.allErrors;
10
+ var $data = 'data' + ($dataLvl || '');
11
+ var $valid = 'valid' + $lvl;
12
+ var $errs = 'errs__' + $lvl;
13
+ var $it = it.util.copy(it);
14
+ var $closingBraces = '';
15
+ $it.level++;
16
+ var $nextValid = 'valid' + $it.level;
17
+ var $noEmptySchema = $schema.every(function($sch) {
18
+ return (it.opts.strictKeywords ? (typeof $sch == 'object' && Object.keys($sch).length > 0) || $sch === false : it.util.schemaHasRules($sch, it.RULES.all));
19
+ });
20
+ if ($noEmptySchema) {
21
+ var $currentBaseId = $it.baseId;
22
+ out += ' var ' + ($errs) + ' = errors; var ' + ($valid) + ' = false; ';
23
+ var $wasComposite = it.compositeRule;
24
+ it.compositeRule = $it.compositeRule = true;
25
+ var arr1 = $schema;
26
+ if (arr1) {
27
+ var $sch, $i = -1,
28
+ l1 = arr1.length - 1;
29
+ while ($i < l1) {
30
+ $sch = arr1[$i += 1];
31
+ $it.schema = $sch;
32
+ $it.schemaPath = $schemaPath + '[' + $i + ']';
33
+ $it.errSchemaPath = $errSchemaPath + '/' + $i;
34
+ out += ' ' + (it.validate($it)) + ' ';
35
+ $it.baseId = $currentBaseId;
36
+ out += ' ' + ($valid) + ' = ' + ($valid) + ' || ' + ($nextValid) + '; if (!' + ($valid) + ') { ';
37
+ $closingBraces += '}';
38
+ }
39
+ }
40
+ it.compositeRule = $it.compositeRule = $wasComposite;
41
+ out += ' ' + ($closingBraces) + ' if (!' + ($valid) + ') { var err = '; /* istanbul ignore else */
42
+ if (it.createErrors !== false) {
43
+ out += ' { keyword: \'' + ('anyOf') + '\' , dataPath: (dataPath || \'\') + ' + (it.errorPath) + ' , schemaPath: ' + (it.util.toQuotedString($errSchemaPath)) + ' , params: {} ';
44
+ if (it.opts.messages !== false) {
45
+ out += ' , message: \'should match some schema in anyOf\' ';
46
+ }
47
+ if (it.opts.verbose) {
48
+ out += ' , schema: validate.schema' + ($schemaPath) + ' , parentSchema: validate.schema' + (it.schemaPath) + ' , data: ' + ($data) + ' ';
49
+ }
50
+ out += ' } ';
51
+ } else {
52
+ out += ' {} ';
53
+ }
54
+ out += '; if (vErrors === null) vErrors = [err]; else vErrors.push(err); errors++; ';
55
+ if (!it.compositeRule && $breakOnError) {
56
+ /* istanbul ignore if */
57
+ if (it.async) {
58
+ out += ' throw new ValidationError(vErrors); ';
59
+ } else {
60
+ out += ' validate.errors = vErrors; return false; ';
61
+ }
62
+ }
63
+ out += ' } else { errors = ' + ($errs) + '; if (vErrors !== null) { if (' + ($errs) + ') vErrors.length = ' + ($errs) + '; else vErrors = null; } ';
64
+ if (it.opts.allErrors) {
65
+ out += ' } ';
66
+ }
67
+ } else {
68
+ if ($breakOnError) {
69
+ out += ' if (true) { ';
70
+ }
71
+ }
72
+ return out;
73
+ }
@@ -0,0 +1,14 @@
1
+ 'use strict';
2
+ module.exports = function generate_comment(it, $keyword, $ruleType) {
3
+ var out = ' ';
4
+ var $schema = it.schema[$keyword];
5
+ var $errSchemaPath = it.errSchemaPath + '/' + $keyword;
6
+ var $breakOnError = !it.opts.allErrors;
7
+ var $comment = it.util.toQuotedString($schema);
8
+ if (it.opts.$comment === true) {
9
+ out += ' console.log(' + ($comment) + ');';
10
+ } else if (typeof it.opts.$comment == 'function') {
11
+ out += ' self._opts.$comment(' + ($comment) + ', ' + (it.util.toQuotedString($errSchemaPath)) + ', validate.root.schema);';
12
+ }
13
+ return out;
14
+ }
@@ -0,0 +1,56 @@
1
+ 'use strict';
2
+ module.exports = function generate_const(it, $keyword, $ruleType) {
3
+ var out = ' ';
4
+ var $lvl = it.level;
5
+ var $dataLvl = it.dataLevel;
6
+ var $schema = it.schema[$keyword];
7
+ var $schemaPath = it.schemaPath + it.util.getProperty($keyword);
8
+ var $errSchemaPath = it.errSchemaPath + '/' + $keyword;
9
+ var $breakOnError = !it.opts.allErrors;
10
+ var $data = 'data' + ($dataLvl || '');
11
+ var $valid = 'valid' + $lvl;
12
+ var $isData = it.opts.$data && $schema && $schema.$data,
13
+ $schemaValue;
14
+ if ($isData) {
15
+ out += ' var schema' + ($lvl) + ' = ' + (it.util.getData($schema.$data, $dataLvl, it.dataPathArr)) + '; ';
16
+ $schemaValue = 'schema' + $lvl;
17
+ } else {
18
+ $schemaValue = $schema;
19
+ }
20
+ if (!$isData) {
21
+ out += ' var schema' + ($lvl) + ' = validate.schema' + ($schemaPath) + ';';
22
+ }
23
+ out += 'var ' + ($valid) + ' = equal(' + ($data) + ', schema' + ($lvl) + '); if (!' + ($valid) + ') { ';
24
+ var $$outStack = $$outStack || [];
25
+ $$outStack.push(out);
26
+ out = ''; /* istanbul ignore else */
27
+ if (it.createErrors !== false) {
28
+ out += ' { keyword: \'' + ('const') + '\' , dataPath: (dataPath || \'\') + ' + (it.errorPath) + ' , schemaPath: ' + (it.util.toQuotedString($errSchemaPath)) + ' , params: { allowedValue: schema' + ($lvl) + ' } ';
29
+ if (it.opts.messages !== false) {
30
+ out += ' , message: \'should be equal to constant\' ';
31
+ }
32
+ if (it.opts.verbose) {
33
+ out += ' , schema: validate.schema' + ($schemaPath) + ' , parentSchema: validate.schema' + (it.schemaPath) + ' , data: ' + ($data) + ' ';
34
+ }
35
+ out += ' } ';
36
+ } else {
37
+ out += ' {} ';
38
+ }
39
+ var __err = out;
40
+ out = $$outStack.pop();
41
+ if (!it.compositeRule && $breakOnError) {
42
+ /* istanbul ignore if */
43
+ if (it.async) {
44
+ out += ' throw new ValidationError([' + (__err) + ']); ';
45
+ } else {
46
+ out += ' validate.errors = [' + (__err) + ']; return false; ';
47
+ }
48
+ } else {
49
+ out += ' var err = ' + (__err) + '; if (vErrors === null) vErrors = [err]; else vErrors.push(err); errors++; ';
50
+ }
51
+ out += ' }';
52
+ if ($breakOnError) {
53
+ out += ' else { ';
54
+ }
55
+ return out;
56
+ }
@@ -0,0 +1,81 @@
1
+ 'use strict';
2
+ module.exports = function generate_contains(it, $keyword, $ruleType) {
3
+ var out = ' ';
4
+ var $lvl = it.level;
5
+ var $dataLvl = it.dataLevel;
6
+ var $schema = it.schema[$keyword];
7
+ var $schemaPath = it.schemaPath + it.util.getProperty($keyword);
8
+ var $errSchemaPath = it.errSchemaPath + '/' + $keyword;
9
+ var $breakOnError = !it.opts.allErrors;
10
+ var $data = 'data' + ($dataLvl || '');
11
+ var $valid = 'valid' + $lvl;
12
+ var $errs = 'errs__' + $lvl;
13
+ var $it = it.util.copy(it);
14
+ var $closingBraces = '';
15
+ $it.level++;
16
+ var $nextValid = 'valid' + $it.level;
17
+ var $idx = 'i' + $lvl,
18
+ $dataNxt = $it.dataLevel = it.dataLevel + 1,
19
+ $nextData = 'data' + $dataNxt,
20
+ $currentBaseId = it.baseId,
21
+ $nonEmptySchema = (it.opts.strictKeywords ? (typeof $schema == 'object' && Object.keys($schema).length > 0) || $schema === false : it.util.schemaHasRules($schema, it.RULES.all));
22
+ out += 'var ' + ($errs) + ' = errors;var ' + ($valid) + ';';
23
+ if ($nonEmptySchema) {
24
+ var $wasComposite = it.compositeRule;
25
+ it.compositeRule = $it.compositeRule = true;
26
+ $it.schema = $schema;
27
+ $it.schemaPath = $schemaPath;
28
+ $it.errSchemaPath = $errSchemaPath;
29
+ out += ' var ' + ($nextValid) + ' = false; for (var ' + ($idx) + ' = 0; ' + ($idx) + ' < ' + ($data) + '.length; ' + ($idx) + '++) { ';
30
+ $it.errorPath = it.util.getPathExpr(it.errorPath, $idx, it.opts.jsonPointers, true);
31
+ var $passData = $data + '[' + $idx + ']';
32
+ $it.dataPathArr[$dataNxt] = $idx;
33
+ var $code = it.validate($it);
34
+ $it.baseId = $currentBaseId;
35
+ if (it.util.varOccurences($code, $nextData) < 2) {
36
+ out += ' ' + (it.util.varReplace($code, $nextData, $passData)) + ' ';
37
+ } else {
38
+ out += ' var ' + ($nextData) + ' = ' + ($passData) + '; ' + ($code) + ' ';
39
+ }
40
+ out += ' if (' + ($nextValid) + ') break; } ';
41
+ it.compositeRule = $it.compositeRule = $wasComposite;
42
+ out += ' ' + ($closingBraces) + ' if (!' + ($nextValid) + ') {';
43
+ } else {
44
+ out += ' if (' + ($data) + '.length == 0) {';
45
+ }
46
+ var $$outStack = $$outStack || [];
47
+ $$outStack.push(out);
48
+ out = ''; /* istanbul ignore else */
49
+ if (it.createErrors !== false) {
50
+ out += ' { keyword: \'' + ('contains') + '\' , dataPath: (dataPath || \'\') + ' + (it.errorPath) + ' , schemaPath: ' + (it.util.toQuotedString($errSchemaPath)) + ' , params: {} ';
51
+ if (it.opts.messages !== false) {
52
+ out += ' , message: \'should contain a valid item\' ';
53
+ }
54
+ if (it.opts.verbose) {
55
+ out += ' , schema: validate.schema' + ($schemaPath) + ' , parentSchema: validate.schema' + (it.schemaPath) + ' , data: ' + ($data) + ' ';
56
+ }
57
+ out += ' } ';
58
+ } else {
59
+ out += ' {} ';
60
+ }
61
+ var __err = out;
62
+ out = $$outStack.pop();
63
+ if (!it.compositeRule && $breakOnError) {
64
+ /* istanbul ignore if */
65
+ if (it.async) {
66
+ out += ' throw new ValidationError([' + (__err) + ']); ';
67
+ } else {
68
+ out += ' validate.errors = [' + (__err) + ']; return false; ';
69
+ }
70
+ } else {
71
+ out += ' var err = ' + (__err) + '; if (vErrors === null) vErrors = [err]; else vErrors.push(err); errors++; ';
72
+ }
73
+ out += ' } else { ';
74
+ if ($nonEmptySchema) {
75
+ out += ' errors = ' + ($errs) + '; if (vErrors !== null) { if (' + ($errs) + ') vErrors.length = ' + ($errs) + '; else vErrors = null; } ';
76
+ }
77
+ if (it.opts.allErrors) {
78
+ out += ' } ';
79
+ }
80
+ return out;
81
+ }
@@ -0,0 +1,228 @@
1
+ 'use strict';
2
+ module.exports = function generate_custom(it, $keyword, $ruleType) {
3
+ var out = ' ';
4
+ var $lvl = it.level;
5
+ var $dataLvl = it.dataLevel;
6
+ var $schema = it.schema[$keyword];
7
+ var $schemaPath = it.schemaPath + it.util.getProperty($keyword);
8
+ var $errSchemaPath = it.errSchemaPath + '/' + $keyword;
9
+ var $breakOnError = !it.opts.allErrors;
10
+ var $errorKeyword;
11
+ var $data = 'data' + ($dataLvl || '');
12
+ var $valid = 'valid' + $lvl;
13
+ var $errs = 'errs__' + $lvl;
14
+ var $isData = it.opts.$data && $schema && $schema.$data,
15
+ $schemaValue;
16
+ if ($isData) {
17
+ out += ' var schema' + ($lvl) + ' = ' + (it.util.getData($schema.$data, $dataLvl, it.dataPathArr)) + '; ';
18
+ $schemaValue = 'schema' + $lvl;
19
+ } else {
20
+ $schemaValue = $schema;
21
+ }
22
+ var $rule = this,
23
+ $definition = 'definition' + $lvl,
24
+ $rDef = $rule.definition,
25
+ $closingBraces = '';
26
+ var $compile, $inline, $macro, $ruleValidate, $validateCode;
27
+ if ($isData && $rDef.$data) {
28
+ $validateCode = 'keywordValidate' + $lvl;
29
+ var $validateSchema = $rDef.validateSchema;
30
+ out += ' var ' + ($definition) + ' = RULES.custom[\'' + ($keyword) + '\'].definition; var ' + ($validateCode) + ' = ' + ($definition) + '.validate;';
31
+ } else {
32
+ $ruleValidate = it.useCustomRule($rule, $schema, it.schema, it);
33
+ if (!$ruleValidate) return;
34
+ $schemaValue = 'validate.schema' + $schemaPath;
35
+ $validateCode = $ruleValidate.code;
36
+ $compile = $rDef.compile;
37
+ $inline = $rDef.inline;
38
+ $macro = $rDef.macro;
39
+ }
40
+ var $ruleErrs = $validateCode + '.errors',
41
+ $i = 'i' + $lvl,
42
+ $ruleErr = 'ruleErr' + $lvl,
43
+ $asyncKeyword = $rDef.async;
44
+ if ($asyncKeyword && !it.async) throw new Error('async keyword in sync schema');
45
+ if (!($inline || $macro)) {
46
+ out += '' + ($ruleErrs) + ' = null;';
47
+ }
48
+ out += 'var ' + ($errs) + ' = errors;var ' + ($valid) + ';';
49
+ if ($isData && $rDef.$data) {
50
+ $closingBraces += '}';
51
+ out += ' if (' + ($schemaValue) + ' === undefined) { ' + ($valid) + ' = true; } else { ';
52
+ if ($validateSchema) {
53
+ $closingBraces += '}';
54
+ out += ' ' + ($valid) + ' = ' + ($definition) + '.validateSchema(' + ($schemaValue) + '); if (' + ($valid) + ') { ';
55
+ }
56
+ }
57
+ if ($inline) {
58
+ if ($rDef.statements) {
59
+ out += ' ' + ($ruleValidate.validate) + ' ';
60
+ } else {
61
+ out += ' ' + ($valid) + ' = ' + ($ruleValidate.validate) + '; ';
62
+ }
63
+ } else if ($macro) {
64
+ var $it = it.util.copy(it);
65
+ var $closingBraces = '';
66
+ $it.level++;
67
+ var $nextValid = 'valid' + $it.level;
68
+ $it.schema = $ruleValidate.validate;
69
+ $it.schemaPath = '';
70
+ var $wasComposite = it.compositeRule;
71
+ it.compositeRule = $it.compositeRule = true;
72
+ var $code = it.validate($it).replace(/validate\.schema/g, $validateCode);
73
+ it.compositeRule = $it.compositeRule = $wasComposite;
74
+ out += ' ' + ($code);
75
+ } else {
76
+ var $$outStack = $$outStack || [];
77
+ $$outStack.push(out);
78
+ out = '';
79
+ out += ' ' + ($validateCode) + '.call( ';
80
+ if (it.opts.passContext) {
81
+ out += 'this';
82
+ } else {
83
+ out += 'self';
84
+ }
85
+ if ($compile || $rDef.schema === false) {
86
+ out += ' , ' + ($data) + ' ';
87
+ } else {
88
+ out += ' , ' + ($schemaValue) + ' , ' + ($data) + ' , validate.schema' + (it.schemaPath) + ' ';
89
+ }
90
+ out += ' , (dataPath || \'\')';
91
+ if (it.errorPath != '""') {
92
+ out += ' + ' + (it.errorPath);
93
+ }
94
+ var $parentData = $dataLvl ? 'data' + (($dataLvl - 1) || '') : 'parentData',
95
+ $parentDataProperty = $dataLvl ? it.dataPathArr[$dataLvl] : 'parentDataProperty';
96
+ out += ' , ' + ($parentData) + ' , ' + ($parentDataProperty) + ' , rootData ) ';
97
+ var def_callRuleValidate = out;
98
+ out = $$outStack.pop();
99
+ if ($rDef.errors === false) {
100
+ out += ' ' + ($valid) + ' = ';
101
+ if ($asyncKeyword) {
102
+ out += 'await ';
103
+ }
104
+ out += '' + (def_callRuleValidate) + '; ';
105
+ } else {
106
+ if ($asyncKeyword) {
107
+ $ruleErrs = 'customErrors' + $lvl;
108
+ out += ' var ' + ($ruleErrs) + ' = null; try { ' + ($valid) + ' = await ' + (def_callRuleValidate) + '; } catch (e) { ' + ($valid) + ' = false; if (e instanceof ValidationError) ' + ($ruleErrs) + ' = e.errors; else throw e; } ';
109
+ } else {
110
+ out += ' ' + ($ruleErrs) + ' = null; ' + ($valid) + ' = ' + (def_callRuleValidate) + '; ';
111
+ }
112
+ }
113
+ }
114
+ if ($rDef.modifying) {
115
+ out += ' if (' + ($parentData) + ') ' + ($data) + ' = ' + ($parentData) + '[' + ($parentDataProperty) + '];';
116
+ }
117
+ out += '' + ($closingBraces);
118
+ if ($rDef.valid) {
119
+ if ($breakOnError) {
120
+ out += ' if (true) { ';
121
+ }
122
+ } else {
123
+ out += ' if ( ';
124
+ if ($rDef.valid === undefined) {
125
+ out += ' !';
126
+ if ($macro) {
127
+ out += '' + ($nextValid);
128
+ } else {
129
+ out += '' + ($valid);
130
+ }
131
+ } else {
132
+ out += ' ' + (!$rDef.valid) + ' ';
133
+ }
134
+ out += ') { ';
135
+ $errorKeyword = $rule.keyword;
136
+ var $$outStack = $$outStack || [];
137
+ $$outStack.push(out);
138
+ out = '';
139
+ var $$outStack = $$outStack || [];
140
+ $$outStack.push(out);
141
+ out = ''; /* istanbul ignore else */
142
+ if (it.createErrors !== false) {
143
+ out += ' { keyword: \'' + ($errorKeyword || 'custom') + '\' , dataPath: (dataPath || \'\') + ' + (it.errorPath) + ' , schemaPath: ' + (it.util.toQuotedString($errSchemaPath)) + ' , params: { keyword: \'' + ($rule.keyword) + '\' } ';
144
+ if (it.opts.messages !== false) {
145
+ out += ' , message: \'should pass "' + ($rule.keyword) + '" keyword validation\' ';
146
+ }
147
+ if (it.opts.verbose) {
148
+ out += ' , schema: validate.schema' + ($schemaPath) + ' , parentSchema: validate.schema' + (it.schemaPath) + ' , data: ' + ($data) + ' ';
149
+ }
150
+ out += ' } ';
151
+ } else {
152
+ out += ' {} ';
153
+ }
154
+ var __err = out;
155
+ out = $$outStack.pop();
156
+ if (!it.compositeRule && $breakOnError) {
157
+ /* istanbul ignore if */
158
+ if (it.async) {
159
+ out += ' throw new ValidationError([' + (__err) + ']); ';
160
+ } else {
161
+ out += ' validate.errors = [' + (__err) + ']; return false; ';
162
+ }
163
+ } else {
164
+ out += ' var err = ' + (__err) + '; if (vErrors === null) vErrors = [err]; else vErrors.push(err); errors++; ';
165
+ }
166
+ var def_customError = out;
167
+ out = $$outStack.pop();
168
+ if ($inline) {
169
+ if ($rDef.errors) {
170
+ if ($rDef.errors != 'full') {
171
+ out += ' for (var ' + ($i) + '=' + ($errs) + '; ' + ($i) + '<errors; ' + ($i) + '++) { var ' + ($ruleErr) + ' = vErrors[' + ($i) + ']; if (' + ($ruleErr) + '.dataPath === undefined) ' + ($ruleErr) + '.dataPath = (dataPath || \'\') + ' + (it.errorPath) + '; if (' + ($ruleErr) + '.schemaPath === undefined) { ' + ($ruleErr) + '.schemaPath = "' + ($errSchemaPath) + '"; } ';
172
+ if (it.opts.verbose) {
173
+ out += ' ' + ($ruleErr) + '.schema = ' + ($schemaValue) + '; ' + ($ruleErr) + '.data = ' + ($data) + '; ';
174
+ }
175
+ out += ' } ';
176
+ }
177
+ } else {
178
+ if ($rDef.errors === false) {
179
+ out += ' ' + (def_customError) + ' ';
180
+ } else {
181
+ out += ' if (' + ($errs) + ' == errors) { ' + (def_customError) + ' } else { for (var ' + ($i) + '=' + ($errs) + '; ' + ($i) + '<errors; ' + ($i) + '++) { var ' + ($ruleErr) + ' = vErrors[' + ($i) + ']; if (' + ($ruleErr) + '.dataPath === undefined) ' + ($ruleErr) + '.dataPath = (dataPath || \'\') + ' + (it.errorPath) + '; if (' + ($ruleErr) + '.schemaPath === undefined) { ' + ($ruleErr) + '.schemaPath = "' + ($errSchemaPath) + '"; } ';
182
+ if (it.opts.verbose) {
183
+ out += ' ' + ($ruleErr) + '.schema = ' + ($schemaValue) + '; ' + ($ruleErr) + '.data = ' + ($data) + '; ';
184
+ }
185
+ out += ' } } ';
186
+ }
187
+ }
188
+ } else if ($macro) {
189
+ out += ' var err = '; /* istanbul ignore else */
190
+ if (it.createErrors !== false) {
191
+ out += ' { keyword: \'' + ($errorKeyword || 'custom') + '\' , dataPath: (dataPath || \'\') + ' + (it.errorPath) + ' , schemaPath: ' + (it.util.toQuotedString($errSchemaPath)) + ' , params: { keyword: \'' + ($rule.keyword) + '\' } ';
192
+ if (it.opts.messages !== false) {
193
+ out += ' , message: \'should pass "' + ($rule.keyword) + '" keyword validation\' ';
194
+ }
195
+ if (it.opts.verbose) {
196
+ out += ' , schema: validate.schema' + ($schemaPath) + ' , parentSchema: validate.schema' + (it.schemaPath) + ' , data: ' + ($data) + ' ';
197
+ }
198
+ out += ' } ';
199
+ } else {
200
+ out += ' {} ';
201
+ }
202
+ out += '; if (vErrors === null) vErrors = [err]; else vErrors.push(err); errors++; ';
203
+ if (!it.compositeRule && $breakOnError) {
204
+ /* istanbul ignore if */
205
+ if (it.async) {
206
+ out += ' throw new ValidationError(vErrors); ';
207
+ } else {
208
+ out += ' validate.errors = vErrors; return false; ';
209
+ }
210
+ }
211
+ } else {
212
+ if ($rDef.errors === false) {
213
+ out += ' ' + (def_customError) + ' ';
214
+ } else {
215
+ out += ' if (Array.isArray(' + ($ruleErrs) + ')) { if (vErrors === null) vErrors = ' + ($ruleErrs) + '; else vErrors = vErrors.concat(' + ($ruleErrs) + '); errors = vErrors.length; for (var ' + ($i) + '=' + ($errs) + '; ' + ($i) + '<errors; ' + ($i) + '++) { var ' + ($ruleErr) + ' = vErrors[' + ($i) + ']; if (' + ($ruleErr) + '.dataPath === undefined) ' + ($ruleErr) + '.dataPath = (dataPath || \'\') + ' + (it.errorPath) + '; ' + ($ruleErr) + '.schemaPath = "' + ($errSchemaPath) + '"; ';
216
+ if (it.opts.verbose) {
217
+ out += ' ' + ($ruleErr) + '.schema = ' + ($schemaValue) + '; ' + ($ruleErr) + '.data = ' + ($data) + '; ';
218
+ }
219
+ out += ' } } else { ' + (def_customError) + ' } ';
220
+ }
221
+ }
222
+ out += ' } ';
223
+ if ($breakOnError) {
224
+ out += ' else { ';
225
+ }
226
+ }
227
+ return out;
228
+ }