ilib-lint 1.6.1 → 1.7.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.
- package/README.md +20 -0
- package/README.md.orig +27 -4
- package/docs/AnsiConsoleFormatter.html +1 -1
- package/docs/BuiltinPlugin.html +1 -1
- package/docs/ConfigBasedFormatter.html +1 -1
- package/docs/DeclarativeResourceRule.html +350 -12
- package/docs/DirItem.html +1 -1
- package/docs/DirItem.js.html +1 -1
- package/docs/FileType.html +1 -1
- package/docs/FileType.js.html +1 -1
- package/docs/FormatterManager.html +1 -1
- package/docs/FormatterManager.js.html +1 -1
- package/docs/LineParser.html +1 -1
- package/docs/LineRegexpChecker.html +1 -1
- package/docs/ParserManager.html +1 -1
- package/docs/ParserManager.js.html +1 -1
- package/docs/PluginManager.html +8 -8
- package/docs/PluginManager.js.html +7 -4
- package/docs/Project.html +1 -1
- package/docs/Project.js.html +1 -1
- package/docs/ResourceCompleteness.html +1 -1
- package/docs/ResourceDNTTerms.html +1 -1
- package/docs/ResourceEdgeWhitespace.html +1 -1
- package/docs/ResourceICUPluralTranslation.html +2 -2
- package/docs/ResourceICUPlurals.html +1 -1
- package/docs/ResourceMatcher.html +1 -1
- package/docs/ResourceNoTranslation.html +1 -1
- package/docs/ResourceQuoteStyle.html +1 -1
- package/docs/ResourceRule.html +13 -14
- package/docs/ResourceSourceChecker.html +1 -1
- package/docs/ResourceStateChecker.html +1 -1
- package/docs/ResourceTargetChecker.html +1 -1
- package/docs/ResourceUniqueKeys.html +1 -1
- package/docs/RuleManager.html +1 -1
- package/docs/RuleManager.js.html +1 -1
- package/docs/RuleSet.html +1 -1
- package/docs/RuleSet.js.html +1 -1
- package/docs/SourceFile.html +1 -1
- package/docs/SourceFile.js.html +1 -1
- package/docs/SourceRegexpChecker.html +1 -1
- package/docs/StringParser.html +1 -1
- package/docs/XliffParser.html +1 -1
- package/docs/formatters_AnsiConsoleFormatter.js.html +1 -1
- package/docs/formatters_ConfigBasedFormatter.js.html +1 -1
- package/docs/global.html +1 -1
- package/docs/index.html +1 -1
- package/docs/plugins_BuiltinPlugin.js.html +1 -1
- package/docs/plugins_LineParser.js.html +1 -1
- package/docs/plugins_StringParser.js.html +1 -1
- package/docs/plugins_XliffParser.js.html +1 -1
- package/docs/rules_DeclarativeResourceRule.js.html +59 -7
- package/docs/rules_LineRegexpChecker.js.html +1 -1
- package/docs/rules_ResourceCompleteness.js.html +1 -1
- package/docs/rules_ResourceDNTTerms.js.html +1 -1
- package/docs/rules_ResourceEdgeWhitespace.js.html +1 -1
- package/docs/rules_ResourceICUPluralTranslation.js.html +7 -3
- package/docs/rules_ResourceICUPlurals.js.html +14 -6
- package/docs/rules_ResourceMatcher.js.html +1 -1
- package/docs/rules_ResourceNoTranslation.js.html +1 -1
- package/docs/rules_ResourceQuoteStyle.js.html +1 -1
- package/docs/rules_ResourceRule.js.html +20 -10
- package/docs/rules_ResourceSourceChecker.js.html +1 -1
- package/docs/rules_ResourceStateChecker.js.html +1 -1
- package/docs/rules_ResourceTargetChecker.js.html +1 -1
- package/docs/rules_ResourceUniqueKeys.js.html +1 -1
- package/docs/rules_SourceRegexpChecker.js.html +1 -1
- package/docs/rules_utils.js.html +1 -1
- package/package.json +1 -1
- package/src/PluginManager.js +6 -3
- package/src/rules/DeclarativeResourceRule.js +58 -6
- package/src/rules/ResourceICUPluralTranslation.js +6 -2
- package/src/rules/ResourceICUPlurals.js +13 -5
- package/src/rules/ResourceRule.js +19 -9
package/README.md
CHANGED
|
@@ -717,6 +717,26 @@ limitations under the License.
|
|
|
717
717
|
|
|
718
718
|
## Release Notes
|
|
719
719
|
|
|
720
|
+
### v1.7.0
|
|
721
|
+
|
|
722
|
+
- added the ability to include or exclude locales from declarative rules
|
|
723
|
+
- the "locales" property gives the list of locales that the
|
|
724
|
+
the rule applies to
|
|
725
|
+
- the "skipLocales" property gives the list of locales that
|
|
726
|
+
the rule does not apply to
|
|
727
|
+
- modified a few locales to be Japanese-only:
|
|
728
|
+
- resource-no-fullwidth-punctuation-subset
|
|
729
|
+
- resource-no-space-between-double-and-single-byte-character
|
|
730
|
+
- resource-no-double-byte-space
|
|
731
|
+
- this fixes a bug where these rules erroneously applied to
|
|
732
|
+
Chinese
|
|
733
|
+
- fixed plural checker to not produce a result if the source plural
|
|
734
|
+
category is empty. Previously, if the source category and the target
|
|
735
|
+
category were both empty, it would complain that the target string
|
|
736
|
+
is the same as the source string.
|
|
737
|
+
- fixed parsing of select and selectordinal plurals so they don't complain
|
|
738
|
+
about a missing "one" category
|
|
739
|
+
|
|
720
740
|
### v1.6.1
|
|
721
741
|
|
|
722
742
|
- resource-quote-style: don't emit error when quotes are missing in SV target
|
package/README.md.orig
CHANGED
|
@@ -717,16 +717,39 @@ limitations under the License.
|
|
|
717
717
|
|
|
718
718
|
## Release Notes
|
|
719
719
|
|
|
720
|
+
<<<<<<< HEAD
|
|
721
|
+
### v1.6.2
|
|
722
|
+
|
|
723
|
+
- fixed plural checker to not produce a result if the source plural
|
|
724
|
+
category is empty. Previously, if the source category and the target
|
|
725
|
+
category were both empty, it would complain that the target string
|
|
726
|
+
is the same as the source string.
|
|
727
|
+
- fixed parsing of select and selectordinal plurals so they don't complain
|
|
728
|
+
about a missing "one" category
|
|
729
|
+
=======
|
|
730
|
+
### v1.7.0
|
|
731
|
+
|
|
732
|
+
- added the ability to include or exclude locales from declarative rules
|
|
733
|
+
- the "locales" property gives the list of locales that the
|
|
734
|
+
the rule applies to
|
|
735
|
+
- the "skipLocales" property gives the list of locales that
|
|
736
|
+
the rule does not apply to
|
|
737
|
+
- modified a few locales to be Japanese-only:
|
|
738
|
+
- resource-no-fullwidth-punctuation-subset
|
|
739
|
+
- resource-no-space-between-double-and-single-byte-character
|
|
740
|
+
- resource-no-double-byte-space
|
|
741
|
+
- this fixes a bug where these rules erroneously applied to
|
|
742
|
+
Chinese
|
|
743
|
+
- modified a rule to be every language except Swedish:
|
|
744
|
+
- resource-quote-style
|
|
745
|
+
>>>>>>> c833d2b (Added "locales" and "skipLocales")
|
|
746
|
+
|
|
720
747
|
### v1.6.1
|
|
721
748
|
|
|
722
|
-
<<<<<<< HEAD
|
|
723
749
|
- resource-quote-style: don't emit error when quotes are missing in SV target
|
|
724
750
|
- fixed a problem of false positives when there is a plural and the target
|
|
725
751
|
language has less plural categories than the source language
|
|
726
|
-
- Having no state attribute on the target tag of a translation unit would
|
|
727
|
-
=======
|
|
728
752
|
- having no state attribute on the target tag of a translation unit would
|
|
729
|
-
>>>>>>> main
|
|
730
753
|
cause an exception. Now it properly gives an error that no state was found.
|
|
731
754
|
- fixed a problem where the same results were printed out multiple times
|
|
732
755
|
|
|
@@ -348,7 +348,7 @@ formatted string.</li></ul></dd>
|
|
|
348
348
|
<br class="clear">
|
|
349
349
|
|
|
350
350
|
<footer>
|
|
351
|
-
Documentation generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc 4.0.2</a> on
|
|
351
|
+
Documentation generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc 4.0.2</a> on Tue May 23 2023 10:08:14 GMT-0700 (Pacific Daylight Time) using the <a href="https://github.com/clenemt/docdash">docdash</a> theme.
|
|
352
352
|
</footer>
|
|
353
353
|
|
|
354
354
|
<script>prettyPrint();</script>
|
package/docs/BuiltinPlugin.html
CHANGED
|
@@ -299,7 +299,7 @@ plugin
|
|
|
299
299
|
<br class="clear">
|
|
300
300
|
|
|
301
301
|
<footer>
|
|
302
|
-
Documentation generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc 4.0.2</a> on
|
|
302
|
+
Documentation generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc 4.0.2</a> on Tue May 23 2023 10:08:14 GMT-0700 (Pacific Daylight Time) using the <a href="https://github.com/clenemt/docdash">docdash</a> theme.
|
|
303
303
|
</footer>
|
|
304
304
|
|
|
305
305
|
<script>prettyPrint();</script>
|
|
@@ -355,7 +355,7 @@ formatted string.</li></ul></dd>
|
|
|
355
355
|
<br class="clear">
|
|
356
356
|
|
|
357
357
|
<footer>
|
|
358
|
-
Documentation generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc 4.0.2</a> on
|
|
358
|
+
Documentation generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc 4.0.2</a> on Tue May 23 2023 10:08:14 GMT-0700 (Pacific Daylight Time) using the <a href="https://github.com/clenemt/docdash">docdash</a> theme.
|
|
359
359
|
</footer>
|
|
360
360
|
|
|
361
361
|
<script>prettyPrint();</script>
|
|
@@ -74,19 +74,13 @@
|
|
|
74
74
|
<dl class="details">
|
|
75
75
|
|
|
76
76
|
<dt class="tag-description">Description:</dt>
|
|
77
|
-
<dd class="tag-description"><ul class="dummy"><li>Construct a new regular expression-based declarative resource rule
|
|
78
|
-
|
|
79
|
-
In addition to the options required by the ResourceRule class, the
|
|
80
|
-
options must contain the following required properties:
|
|
81
|
-
|
|
82
|
-
- regexps - an array of strings that encode regular expressions to
|
|
83
|
-
look for</li></ul></dd>
|
|
77
|
+
<dd class="tag-description"><ul class="dummy"><li>Construct a new regular expression-based declarative resource rule.</li></ul></dd>
|
|
84
78
|
|
|
85
79
|
|
|
86
80
|
|
|
87
81
|
<dt class="tag-source">Source:</dt>
|
|
88
82
|
<dd class="tag-source"><ul class="dummy"><li>
|
|
89
|
-
<a href="rules_DeclarativeResourceRule.js.html">rules/DeclarativeResourceRule.js</a>, <a href="rules_DeclarativeResourceRule.js.html#
|
|
83
|
+
<a href="rules_DeclarativeResourceRule.js.html">rules/DeclarativeResourceRule.js</a>, <a href="rules_DeclarativeResourceRule.js.html#line66">line 66</a>
|
|
90
84
|
</li></ul></dd>
|
|
91
85
|
|
|
92
86
|
|
|
@@ -146,6 +140,8 @@ options must contain the following required properties:
|
|
|
146
140
|
<th>Type</th>
|
|
147
141
|
|
|
148
142
|
|
|
143
|
+
<th>Attributes</th>
|
|
144
|
+
|
|
149
145
|
|
|
150
146
|
|
|
151
147
|
|
|
@@ -172,10 +168,352 @@ options must contain the following required properties:
|
|
|
172
168
|
</td>
|
|
173
169
|
|
|
174
170
|
|
|
171
|
+
<td class="attributes">
|
|
172
|
+
|
|
173
|
+
|
|
174
|
+
|
|
175
|
+
|
|
176
|
+
|
|
177
|
+
</td>
|
|
178
|
+
|
|
179
|
+
|
|
180
|
+
|
|
181
|
+
|
|
182
|
+
<td class="description last">options as documented above
|
|
183
|
+
<h6>Properties</h6>
|
|
184
|
+
|
|
185
|
+
|
|
186
|
+
<table class="params">
|
|
187
|
+
<thead>
|
|
188
|
+
<tr>
|
|
189
|
+
|
|
190
|
+
<th>Name</th>
|
|
191
|
+
|
|
192
|
+
|
|
193
|
+
<th>Type</th>
|
|
194
|
+
|
|
195
|
+
|
|
196
|
+
<th>Attributes</th>
|
|
197
|
+
|
|
198
|
+
|
|
199
|
+
|
|
200
|
+
|
|
201
|
+
<th class="last">Description</th>
|
|
202
|
+
</tr>
|
|
203
|
+
</thead>
|
|
204
|
+
|
|
205
|
+
<tbody>
|
|
206
|
+
|
|
207
|
+
|
|
208
|
+
<tr>
|
|
209
|
+
|
|
210
|
+
<td class="name"><code>name</code></td>
|
|
211
|
+
|
|
212
|
+
|
|
213
|
+
<td class="type">
|
|
214
|
+
|
|
215
|
+
|
|
216
|
+
<span class="param-type">String</span>
|
|
217
|
+
|
|
218
|
+
|
|
219
|
+
|
|
220
|
+
|
|
221
|
+
</td>
|
|
222
|
+
|
|
223
|
+
|
|
224
|
+
<td class="attributes">
|
|
225
|
+
|
|
226
|
+
|
|
227
|
+
|
|
228
|
+
|
|
229
|
+
|
|
230
|
+
</td>
|
|
231
|
+
|
|
232
|
+
|
|
233
|
+
|
|
234
|
+
|
|
235
|
+
<td class="description last">the unique name of this rule</td>
|
|
236
|
+
</tr>
|
|
237
|
+
|
|
238
|
+
|
|
239
|
+
|
|
240
|
+
<tr>
|
|
241
|
+
|
|
242
|
+
<td class="name"><code>description</code></td>
|
|
243
|
+
|
|
244
|
+
|
|
245
|
+
<td class="type">
|
|
246
|
+
|
|
247
|
+
|
|
248
|
+
<span class="param-type">String</span>
|
|
249
|
+
|
|
250
|
+
|
|
251
|
+
|
|
252
|
+
|
|
253
|
+
</td>
|
|
254
|
+
|
|
255
|
+
|
|
256
|
+
<td class="attributes">
|
|
257
|
+
|
|
258
|
+
|
|
259
|
+
|
|
260
|
+
|
|
261
|
+
|
|
262
|
+
</td>
|
|
263
|
+
|
|
264
|
+
|
|
265
|
+
|
|
266
|
+
|
|
267
|
+
<td class="description last">a one-line description of what
|
|
268
|
+
this rule checks for. Example: "Check that URLs in the source also
|
|
269
|
+
appear in the target"</td>
|
|
270
|
+
</tr>
|
|
271
|
+
|
|
272
|
+
|
|
273
|
+
|
|
274
|
+
<tr>
|
|
275
|
+
|
|
276
|
+
<td class="name"><code>note</code></td>
|
|
277
|
+
|
|
278
|
+
|
|
279
|
+
<td class="type">
|
|
280
|
+
|
|
281
|
+
|
|
282
|
+
<span class="param-type">String</span>
|
|
283
|
+
|
|
284
|
+
|
|
285
|
+
|
|
286
|
+
|
|
287
|
+
</td>
|
|
288
|
+
|
|
289
|
+
|
|
290
|
+
<td class="attributes">
|
|
291
|
+
|
|
292
|
+
|
|
293
|
+
|
|
294
|
+
|
|
295
|
+
|
|
296
|
+
</td>
|
|
297
|
+
|
|
298
|
+
|
|
299
|
+
|
|
300
|
+
|
|
301
|
+
<td class="description last">a one-line note that will be printed on
|
|
302
|
+
screen when the check fails. Example: "The URL {matchString} did
|
|
303
|
+
not appear in the target." (Currently, matchString is the only
|
|
304
|
+
replacement param that is supported.)</td>
|
|
305
|
+
</tr>
|
|
306
|
+
|
|
307
|
+
|
|
308
|
+
|
|
309
|
+
<tr>
|
|
310
|
+
|
|
311
|
+
<td class="name"><code>regexps</code></td>
|
|
312
|
+
|
|
313
|
+
|
|
314
|
+
<td class="type">
|
|
315
|
+
|
|
316
|
+
|
|
317
|
+
<span class="param-type">String</span>
|
|
318
|
+
|
|
319
|
+
|
|
320
|
+
|
|
321
|
+
|
|
322
|
+
</td>
|
|
323
|
+
|
|
324
|
+
|
|
325
|
+
<td class="attributes">
|
|
326
|
+
|
|
327
|
+
|
|
328
|
+
|
|
329
|
+
|
|
330
|
+
|
|
331
|
+
</td>
|
|
332
|
+
|
|
333
|
+
|
|
334
|
+
|
|
335
|
+
|
|
336
|
+
<td class="description last">an array of strings that encode
|
|
337
|
+
regular expressions to look for</td>
|
|
338
|
+
</tr>
|
|
339
|
+
|
|
340
|
+
|
|
341
|
+
|
|
342
|
+
<tr>
|
|
343
|
+
|
|
344
|
+
<td class="name"><code>sourceLocale</code></td>
|
|
345
|
+
|
|
346
|
+
|
|
347
|
+
<td class="type">
|
|
348
|
+
|
|
349
|
+
|
|
350
|
+
<span class="param-type">String</span>
|
|
351
|
+
|
|
352
|
+
|
|
353
|
+
|
|
354
|
+
|
|
355
|
+
</td>
|
|
356
|
+
|
|
357
|
+
|
|
358
|
+
<td class="attributes">
|
|
359
|
+
|
|
360
|
+
<optional><br>
|
|
361
|
+
|
|
362
|
+
|
|
363
|
+
|
|
364
|
+
|
|
365
|
+
|
|
366
|
+
</td>
|
|
367
|
+
|
|
368
|
+
|
|
369
|
+
|
|
370
|
+
|
|
371
|
+
<td class="description last">the source locale of this rule</td>
|
|
372
|
+
</tr>
|
|
373
|
+
|
|
374
|
+
|
|
375
|
+
|
|
376
|
+
<tr>
|
|
377
|
+
|
|
378
|
+
<td class="name"><code>link</code></td>
|
|
379
|
+
|
|
380
|
+
|
|
381
|
+
<td class="type">
|
|
382
|
+
|
|
383
|
+
|
|
384
|
+
<span class="param-type">String</span>
|
|
385
|
+
|
|
386
|
+
|
|
387
|
+
|
|
388
|
+
|
|
389
|
+
</td>
|
|
390
|
+
|
|
391
|
+
|
|
392
|
+
<td class="attributes">
|
|
393
|
+
|
|
394
|
+
<optional><br>
|
|
395
|
+
|
|
396
|
+
|
|
397
|
+
|
|
398
|
+
|
|
399
|
+
|
|
400
|
+
</td>
|
|
401
|
+
|
|
175
402
|
|
|
176
403
|
|
|
177
404
|
|
|
178
|
-
<td class="description last">
|
|
405
|
+
<td class="description last">the URL to a web page that explains this
|
|
406
|
+
rule in more detail</td>
|
|
407
|
+
</tr>
|
|
408
|
+
|
|
409
|
+
|
|
410
|
+
</tbody>
|
|
411
|
+
</table>
|
|
412
|
+
|
|
413
|
+
</td>
|
|
414
|
+
</tr>
|
|
415
|
+
|
|
416
|
+
|
|
417
|
+
|
|
418
|
+
<tr>
|
|
419
|
+
|
|
420
|
+
<td class="name"><code></code></td>
|
|
421
|
+
|
|
422
|
+
|
|
423
|
+
<td class="type">
|
|
424
|
+
|
|
425
|
+
</td>
|
|
426
|
+
|
|
427
|
+
|
|
428
|
+
<td class="attributes">
|
|
429
|
+
|
|
430
|
+
|
|
431
|
+
|
|
432
|
+
|
|
433
|
+
|
|
434
|
+
</td>
|
|
435
|
+
|
|
436
|
+
|
|
437
|
+
|
|
438
|
+
|
|
439
|
+
<td class="description last"></td>
|
|
440
|
+
</tr>
|
|
441
|
+
|
|
442
|
+
|
|
443
|
+
|
|
444
|
+
<tr>
|
|
445
|
+
|
|
446
|
+
<td class="name"><code>options.locales</code></td>
|
|
447
|
+
|
|
448
|
+
|
|
449
|
+
<td class="type">
|
|
450
|
+
|
|
451
|
+
|
|
452
|
+
<span class="param-type">Array.<String></span>
|
|
453
|
+
|
|
454
|
+
|
|
455
|
+
|
|
456
|
+
|
|
457
|
+
</td>
|
|
458
|
+
|
|
459
|
+
|
|
460
|
+
<td class="attributes">
|
|
461
|
+
|
|
462
|
+
<optional><br>
|
|
463
|
+
|
|
464
|
+
|
|
465
|
+
|
|
466
|
+
|
|
467
|
+
|
|
468
|
+
</td>
|
|
469
|
+
|
|
470
|
+
|
|
471
|
+
|
|
472
|
+
|
|
473
|
+
<td class="description last">the target locales to which this
|
|
474
|
+
rule applies. If specified, this rule will skip resources that have a
|
|
475
|
+
target locale that does not match either the language or the language-script
|
|
476
|
+
part of each of the locales. If not specified, the rule applies to all
|
|
477
|
+
target locales.</td>
|
|
478
|
+
</tr>
|
|
479
|
+
|
|
480
|
+
|
|
481
|
+
|
|
482
|
+
<tr>
|
|
483
|
+
|
|
484
|
+
<td class="name"><code>options.skipLocales</code></td>
|
|
485
|
+
|
|
486
|
+
|
|
487
|
+
<td class="type">
|
|
488
|
+
|
|
489
|
+
|
|
490
|
+
<span class="param-type">Array.<String></span>
|
|
491
|
+
|
|
492
|
+
|
|
493
|
+
|
|
494
|
+
|
|
495
|
+
</td>
|
|
496
|
+
|
|
497
|
+
|
|
498
|
+
<td class="attributes">
|
|
499
|
+
|
|
500
|
+
<optional><br>
|
|
501
|
+
|
|
502
|
+
|
|
503
|
+
|
|
504
|
+
|
|
505
|
+
|
|
506
|
+
</td>
|
|
507
|
+
|
|
508
|
+
|
|
509
|
+
|
|
510
|
+
|
|
511
|
+
<td class="description last">the target locales to which this
|
|
512
|
+
rule does not apply. If specified, this rule will skip resources that have a
|
|
513
|
+
target locale that matches either the language or the language-script
|
|
514
|
+
part of any of the given locales. If not specified, the rule applies to all
|
|
515
|
+
target locales. If both locales and skipLocales are specified, only the
|
|
516
|
+
locales will used.</td>
|
|
179
517
|
</tr>
|
|
180
518
|
|
|
181
519
|
|
|
@@ -242,7 +580,7 @@ options must contain the following required properties:
|
|
|
242
580
|
|
|
243
581
|
<dt class="tag-source">Source:</dt>
|
|
244
582
|
<dd class="tag-source"><ul class="dummy"><li>
|
|
245
|
-
<a href="rules_DeclarativeResourceRule.js.html">rules/DeclarativeResourceRule.js</a>, <a href="rules_DeclarativeResourceRule.js.html#
|
|
583
|
+
<a href="rules_DeclarativeResourceRule.js.html">rules/DeclarativeResourceRule.js</a>, <a href="rules_DeclarativeResourceRule.js.html#line109">line 109</a>
|
|
246
584
|
</li></ul></dd>
|
|
247
585
|
|
|
248
586
|
|
|
@@ -556,7 +894,7 @@ any matches to the regular expression
|
|
|
556
894
|
|
|
557
895
|
<dt class="tag-source">Source:</dt>
|
|
558
896
|
<dd class="tag-source"><ul class="dummy"><li>
|
|
559
|
-
<a href="rules_DeclarativeResourceRule.js.html">rules/DeclarativeResourceRule.js</a>, <a href="rules_DeclarativeResourceRule.js.html#
|
|
897
|
+
<a href="rules_DeclarativeResourceRule.js.html">rules/DeclarativeResourceRule.js</a>, <a href="rules_DeclarativeResourceRule.js.html#line114">line 114</a>
|
|
560
898
|
</li></ul></dd>
|
|
561
899
|
|
|
562
900
|
|
|
@@ -640,7 +978,7 @@ any matches to the regular expression
|
|
|
640
978
|
<br class="clear">
|
|
641
979
|
|
|
642
980
|
<footer>
|
|
643
|
-
Documentation generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc 4.0.2</a> on
|
|
981
|
+
Documentation generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc 4.0.2</a> on Tue May 23 2023 10:08:14 GMT-0700 (Pacific Daylight Time) using the <a href="https://github.com/clenemt/docdash">docdash</a> theme.
|
|
644
982
|
</footer>
|
|
645
983
|
|
|
646
984
|
<script>prettyPrint();</script>
|
package/docs/DirItem.html
CHANGED
|
@@ -574,7 +574,7 @@ representations of this file
|
|
|
574
574
|
<br class="clear">
|
|
575
575
|
|
|
576
576
|
<footer>
|
|
577
|
-
Documentation generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc 4.0.2</a> on
|
|
577
|
+
Documentation generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc 4.0.2</a> on Tue May 23 2023 10:08:14 GMT-0700 (Pacific Daylight Time) using the <a href="https://github.com/clenemt/docdash">docdash</a> theme.
|
|
578
578
|
</footer>
|
|
579
579
|
|
|
580
580
|
<script>prettyPrint();</script>
|
package/docs/DirItem.js.html
CHANGED
|
@@ -140,7 +140,7 @@ export default DirItem;
|
|
|
140
140
|
<br class="clear">
|
|
141
141
|
|
|
142
142
|
<footer>
|
|
143
|
-
Documentation generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc 4.0.2</a> on
|
|
143
|
+
Documentation generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc 4.0.2</a> on Tue May 23 2023 10:08:14 GMT-0700 (Pacific Daylight Time) using the <a href="https://github.com/clenemt/docdash">docdash</a> theme.
|
|
144
144
|
</footer>
|
|
145
145
|
|
|
146
146
|
<script>prettyPrint();</script>
|
package/docs/FileType.html
CHANGED
|
@@ -483,7 +483,7 @@ all of the ruleset definitions
|
|
|
483
483
|
<br class="clear">
|
|
484
484
|
|
|
485
485
|
<footer>
|
|
486
|
-
Documentation generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc 4.0.2</a> on
|
|
486
|
+
Documentation generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc 4.0.2</a> on Tue May 23 2023 10:08:14 GMT-0700 (Pacific Daylight Time) using the <a href="https://github.com/clenemt/docdash">docdash</a> theme.
|
|
487
487
|
</footer>
|
|
488
488
|
|
|
489
489
|
<script>prettyPrint();</script>
|
package/docs/FileType.js.html
CHANGED
|
@@ -215,7 +215,7 @@ export default FileType;</code></pre>
|
|
|
215
215
|
<br class="clear">
|
|
216
216
|
|
|
217
217
|
<footer>
|
|
218
|
-
Documentation generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc 4.0.2</a> on
|
|
218
|
+
Documentation generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc 4.0.2</a> on Tue May 23 2023 10:08:14 GMT-0700 (Pacific Daylight Time) using the <a href="https://github.com/clenemt/docdash">docdash</a> theme.
|
|
219
219
|
</footer>
|
|
220
220
|
|
|
221
221
|
<script>prettyPrint();</script>
|
|
@@ -731,7 +731,7 @@ values are the formatter descriptions.</li></ul></dd>
|
|
|
731
731
|
<br class="clear">
|
|
732
732
|
|
|
733
733
|
<footer>
|
|
734
|
-
Documentation generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc 4.0.2</a> on
|
|
734
|
+
Documentation generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc 4.0.2</a> on Tue May 23 2023 10:08:14 GMT-0700 (Pacific Daylight Time) using the <a href="https://github.com/clenemt/docdash">docdash</a> theme.
|
|
735
735
|
</footer>
|
|
736
736
|
|
|
737
737
|
<script>prettyPrint();</script>
|
|
@@ -191,7 +191,7 @@ export default FormatterManager;</code></pre>
|
|
|
191
191
|
<br class="clear">
|
|
192
192
|
|
|
193
193
|
<footer>
|
|
194
|
-
Documentation generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc 4.0.2</a> on
|
|
194
|
+
Documentation generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc 4.0.2</a> on Tue May 23 2023 10:08:14 GMT-0700 (Pacific Daylight Time) using the <a href="https://github.com/clenemt/docdash">docdash</a> theme.
|
|
195
195
|
</footer>
|
|
196
196
|
|
|
197
197
|
<script>prettyPrint();</script>
|
package/docs/LineParser.html
CHANGED
|
@@ -274,7 +274,7 @@
|
|
|
274
274
|
<br class="clear">
|
|
275
275
|
|
|
276
276
|
<footer>
|
|
277
|
-
Documentation generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc 4.0.2</a> on
|
|
277
|
+
Documentation generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc 4.0.2</a> on Tue May 23 2023 10:08:14 GMT-0700 (Pacific Daylight Time) using the <a href="https://github.com/clenemt/docdash">docdash</a> theme.
|
|
278
278
|
</footer>
|
|
279
279
|
|
|
280
280
|
<script>prettyPrint();</script>
|
|
@@ -340,7 +340,7 @@ The options must contain the following required properties:
|
|
|
340
340
|
<br class="clear">
|
|
341
341
|
|
|
342
342
|
<footer>
|
|
343
|
-
Documentation generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc 4.0.2</a> on
|
|
343
|
+
Documentation generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc 4.0.2</a> on Tue May 23 2023 10:08:14 GMT-0700 (Pacific Daylight Time) using the <a href="https://github.com/clenemt/docdash">docdash</a> theme.
|
|
344
344
|
</footer>
|
|
345
345
|
|
|
346
346
|
<script>prettyPrint();</script>
|
package/docs/ParserManager.html
CHANGED
|
@@ -594,7 +594,7 @@ values are the parser descriptions.</li></ul></dd>
|
|
|
594
594
|
<br class="clear">
|
|
595
595
|
|
|
596
596
|
<footer>
|
|
597
|
-
Documentation generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc 4.0.2</a> on
|
|
597
|
+
Documentation generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc 4.0.2</a> on Tue May 23 2023 10:08:14 GMT-0700 (Pacific Daylight Time) using the <a href="https://github.com/clenemt/docdash">docdash</a> theme.
|
|
598
598
|
</footer>
|
|
599
599
|
|
|
600
600
|
<script>prettyPrint();</script>
|
|
@@ -160,7 +160,7 @@ export default ParserManager;</code></pre>
|
|
|
160
160
|
<br class="clear">
|
|
161
161
|
|
|
162
162
|
<footer>
|
|
163
|
-
Documentation generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc 4.0.2</a> on
|
|
163
|
+
Documentation generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc 4.0.2</a> on Tue May 23 2023 10:08:14 GMT-0700 (Pacific Daylight Time) using the <a href="https://github.com/clenemt/docdash">docdash</a> theme.
|
|
164
164
|
</footer>
|
|
165
165
|
|
|
166
166
|
<script>prettyPrint();</script>
|