ilib-lint 1.5.2 → 1.5.3
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 +5 -0
- package/README.md.orig +33 -14
- package/docs/AnsiConsoleFormatter.html +1 -1
- package/docs/ConfigBasedFormatter.html +1 -1
- 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/ParserManager.html +1 -1
- package/docs/ParserManager.js.html +1 -1
- package/docs/PluginManager.html +1 -1
- package/docs/PluginManager.js.html +1 -1
- 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 +1 -1
- package/docs/ResourceICUPlurals.html +1 -1
- package/docs/ResourceMatcher.html +1 -1
- package/docs/ResourceNoTranslation.html +1 -1
- package/docs/ResourceQuoteStyle.html +3 -3
- 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/XliffParser.html +1 -1
- package/docs/XliffPlugin.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_XliffParser.js.html +1 -1
- package/docs/plugins_XliffPlugin.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 +1 -1
- package/docs/rules_ResourceICUPlurals.js.html +1 -1
- package/docs/rules_ResourceMatcher.js.html +1 -1
- package/docs/rules_ResourceNoTranslation.js.html +1 -1
- package/docs/rules_ResourceQuoteStyle.js.html +138 -69
- 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_SourceFileChecker.js.html +1 -1
- package/docs/rules_utils.js.html +1 -1
- package/docs/walk.js.html +1 -1
- package/package.json +6 -6
- package/src/rules/ResourceQuoteStyle.js +137 -68
- package/docs/Formatter.html +0 -577
- package/docs/Formatter.js.html +0 -135
- package/docs/FormatterFactory.html +0 -191
- package/docs/FormatterFactory.js.html +0 -109
- package/docs/Parser.html +0 -483
- package/docs/Parser.js.html +0 -122
- package/docs/ParserFactory.js.html +0 -109
- package/docs/Plugin.html +0 -847
- package/docs/Plugin.js.html +0 -168
- package/docs/ResourceRegExpChecker.html +0 -295
- package/docs/Result.html +0 -263
- package/docs/Result.js.html +0 -130
- package/docs/Rule.html +0 -774
- package/docs/Rule.js.html +0 -230
- package/docs/SourceRegexpChecker.html +0 -353
- package/docs/rules_ResourceRegExpChecker.js.html +0 -247
- package/docs/rules_SourceRegexpChecker.js.html +0 -230
package/README.md
CHANGED
|
@@ -610,6 +610,11 @@ limitations under the License.
|
|
|
610
610
|
|
|
611
611
|
## Release Notes
|
|
612
612
|
|
|
613
|
+
### v1.5.3
|
|
614
|
+
|
|
615
|
+
- fixed a problem where the quote checker rule would not handle ASCII single quote
|
|
616
|
+
characters used as apostophes properly.
|
|
617
|
+
|
|
613
618
|
### v1.5.2
|
|
614
619
|
|
|
615
620
|
- update the documentation above to enumerate all the current resource plugins
|
package/README.md.orig
CHANGED
|
@@ -287,12 +287,12 @@ Here is an example of a configuration file:
|
|
|
287
287
|
]
|
|
288
288
|
},
|
|
289
289
|
"javascript": {
|
|
290
|
-
"
|
|
290
|
+
"ruleset": [
|
|
291
291
|
"react-rules"
|
|
292
292
|
]
|
|
293
293
|
},
|
|
294
294
|
"jsx": {
|
|
295
|
-
"
|
|
295
|
+
"ruleset": [
|
|
296
296
|
"react-rules"
|
|
297
297
|
]
|
|
298
298
|
}
|
|
@@ -393,16 +393,22 @@ multiple instances of each class during the run of the program.
|
|
|
393
393
|
### Parsers
|
|
394
394
|
|
|
395
395
|
The job of the parser is to convert a source file into an intermediate representation
|
|
396
|
-
that rules can easily digest. There are
|
|
396
|
+
that rules can easily digest. There are a few standard representations that many
|
|
397
397
|
rules use, but your parser and rules can use their own representation, as
|
|
398
|
-
long as the parser and the rules agree on what that format is. Typically,
|
|
399
|
-
parser will produce something like an abstract syntax tree (AST) that
|
|
400
|
-
know how to traverse and interpret.
|
|
398
|
+
long as the parser and the rules agree on what that format is. Typically, a
|
|
399
|
+
sophisticated parser will produce something like an abstract syntax tree (AST) that
|
|
400
|
+
the rules know how to traverse and interpret. The standard representations are
|
|
401
|
+
much simpler than that. These parsers should pick a unique name for their
|
|
402
|
+
representation so that the appropriate rules can parse that representation.
|
|
401
403
|
|
|
402
|
-
The
|
|
404
|
+
The standard representations are:
|
|
403
405
|
|
|
404
|
-
- resources - the file is converted into
|
|
406
|
+
- resources - the file is converted into an array of
|
|
407
|
+
[Resource](https://github.com/iLib-js/ilib-tools-common/blob/main/src/Resource.js)
|
|
408
|
+
instances
|
|
405
409
|
- lines - the file in converted into a simple array of lines
|
|
410
|
+
- source - the file is not parsed. Instead, the entire text of the file is used to
|
|
411
|
+
search for problems. (Usually with regular expressions.)
|
|
406
412
|
|
|
407
413
|
The resources representation is intended to represent entries in resource files
|
|
408
414
|
such as xliff files, gnu po files, or java properties files. Each entry in the
|
|
@@ -466,9 +472,9 @@ Each declarative rule should have the following properties:
|
|
|
466
472
|
* resource-target - check resources in a resource file. If
|
|
467
473
|
the regular expressions match in the target string of a
|
|
468
474
|
resource, a result will be generated
|
|
469
|
-
*
|
|
475
|
+
* source-checker - Check the text in a source file, such as a
|
|
470
476
|
java file or a python file. Regular expressions that match
|
|
471
|
-
in the source file will generate results
|
|
477
|
+
anywhere in the source file will generate results
|
|
472
478
|
* name (String) - a unique dash-separated name of this rule.
|
|
473
479
|
eg. "resource-url-match",
|
|
474
480
|
* description (String) - a description of what this rule is trying
|
|
@@ -488,6 +494,8 @@ Each declarative rule should have the following properties:
|
|
|
488
494
|
and avoided in the future. Often, this is a link to a markdown file
|
|
489
495
|
in the docs folder on the github repo for the plugin, but it can be
|
|
490
496
|
any link you like.
|
|
497
|
+
* severity (String) - the severity of this result if this check fails.
|
|
498
|
+
This should be one of "error", "warning", or "suggestion".
|
|
491
499
|
|
|
492
500
|
Programmatic rules are used when the requirements for the rules are more complicated
|
|
493
501
|
than a simple regular expression string can handle. For example, a rule that checks
|
|
@@ -610,14 +618,26 @@ limitations under the License.
|
|
|
610
618
|
|
|
611
619
|
## Release Notes
|
|
612
620
|
|
|
621
|
+
<<<<<<< HEAD
|
|
622
|
+
### v1.6.0
|
|
623
|
+
|
|
624
|
+
- added the ability to scan source code files and apply rules
|
|
625
|
+
- added source-checker Rule for declarative rules
|
|
626
|
+
- moved functionality into Project class
|
|
627
|
+
- main loop moved from index.js into the run() method
|
|
628
|
+
- directory walk function moved to a method of Project
|
|
629
|
+
=======
|
|
630
|
+
### v1.5.3
|
|
631
|
+
|
|
632
|
+
- fixed a problem where the quote checker rule would not handle ASCII single quote
|
|
633
|
+
characters used as apostophes properly.
|
|
634
|
+
>>>>>>> main
|
|
635
|
+
|
|
613
636
|
### v1.5.2
|
|
614
637
|
|
|
615
|
-
<<<<<<< HEAD
|
|
616
638
|
- update the documentation above to enumerate all the current resource plugins
|
|
617
|
-
=======
|
|
618
639
|
- fixed a bug where some resources cause a crash in the
|
|
619
640
|
resource-icu-plurals-translated rule
|
|
620
|
-
>>>>>>> f4a8767 (Fixed a bug in ICU plural translation checker)
|
|
621
641
|
|
|
622
642
|
### v1.5.1
|
|
623
643
|
|
|
@@ -652,7 +672,6 @@ limitations under the License.
|
|
|
652
672
|
|
|
653
673
|
- added resource-state-checker Rule so that you can ensure that all
|
|
654
674
|
resources have a particular state field value
|
|
655
|
-
|
|
656
675
|
### v1.2.1
|
|
657
676
|
|
|
658
677
|
- fixed packaging problem where the test plugin was listed in the
|
|
@@ -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.
|
|
351
|
+
Documentation generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc 4.0.2</a> on Wed May 10 2023 07:15:40 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>
|
|
@@ -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.
|
|
358
|
+
Documentation generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc 4.0.2</a> on Wed May 10 2023 07:15:40 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>
|
package/docs/DirItem.html
CHANGED
|
@@ -705,7 +705,7 @@ The options parameter can contain any of the following properties:
|
|
|
705
705
|
<br class="clear">
|
|
706
706
|
|
|
707
707
|
<footer>
|
|
708
|
-
Documentation generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc 4.0.
|
|
708
|
+
Documentation generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc 4.0.2</a> on Wed May 10 2023 07:15:40 GMT-0700 (Pacific Daylight Time) using the <a href="https://github.com/clenemt/docdash">docdash</a> theme.
|
|
709
709
|
</footer>
|
|
710
710
|
|
|
711
711
|
<script>prettyPrint();</script>
|
package/docs/DirItem.js.html
CHANGED
|
@@ -149,7 +149,7 @@ export default DirItem;
|
|
|
149
149
|
<br class="clear">
|
|
150
150
|
|
|
151
151
|
<footer>
|
|
152
|
-
Documentation generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc 4.0.
|
|
152
|
+
Documentation generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc 4.0.2</a> on Wed May 10 2023 07:15:40 GMT-0700 (Pacific Daylight Time) using the <a href="https://github.com/clenemt/docdash">docdash</a> theme.
|
|
153
153
|
</footer>
|
|
154
154
|
|
|
155
155
|
<script>prettyPrint();</script>
|
package/docs/FileType.html
CHANGED
|
@@ -480,7 +480,7 @@ all of the ruleset definitions
|
|
|
480
480
|
<br class="clear">
|
|
481
481
|
|
|
482
482
|
<footer>
|
|
483
|
-
Documentation generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc 4.0.
|
|
483
|
+
Documentation generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc 4.0.2</a> on Wed May 10 2023 07:15:40 GMT-0700 (Pacific Daylight Time) using the <a href="https://github.com/clenemt/docdash">docdash</a> theme.
|
|
484
484
|
</footer>
|
|
485
485
|
|
|
486
486
|
<script>prettyPrint();</script>
|
package/docs/FileType.js.html
CHANGED
|
@@ -202,7 +202,7 @@ export default FileType;</code></pre>
|
|
|
202
202
|
<br class="clear">
|
|
203
203
|
|
|
204
204
|
<footer>
|
|
205
|
-
Documentation generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc 4.0.
|
|
205
|
+
Documentation generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc 4.0.2</a> on Wed May 10 2023 07:15:40 GMT-0700 (Pacific Daylight Time) using the <a href="https://github.com/clenemt/docdash">docdash</a> theme.
|
|
206
206
|
</footer>
|
|
207
207
|
|
|
208
208
|
<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.
|
|
734
|
+
Documentation generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc 4.0.2</a> on Wed May 10 2023 07:15:40 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>
|
|
@@ -182,7 +182,7 @@ export default FormatterManager;</code></pre>
|
|
|
182
182
|
<br class="clear">
|
|
183
183
|
|
|
184
184
|
<footer>
|
|
185
|
-
Documentation generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc 4.0.
|
|
185
|
+
Documentation generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc 4.0.2</a> on Wed May 10 2023 07:15:40 GMT-0700 (Pacific Daylight Time) using the <a href="https://github.com/clenemt/docdash">docdash</a> theme.
|
|
186
186
|
</footer>
|
|
187
187
|
|
|
188
188
|
<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.
|
|
597
|
+
Documentation generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc 4.0.2</a> on Wed May 10 2023 07:15:40 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>
|
|
@@ -155,7 +155,7 @@ export default ParserManager;</code></pre>
|
|
|
155
155
|
<br class="clear">
|
|
156
156
|
|
|
157
157
|
<footer>
|
|
158
|
-
Documentation generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc 4.0.
|
|
158
|
+
Documentation generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc 4.0.2</a> on Wed May 10 2023 07:15:40 GMT-0700 (Pacific Daylight Time) using the <a href="https://github.com/clenemt/docdash">docdash</a> theme.
|
|
159
159
|
</footer>
|
|
160
160
|
|
|
161
161
|
<script>prettyPrint();</script>
|
package/docs/PluginManager.html
CHANGED
|
@@ -930,7 +930,7 @@ each named plugin is loaded. This method returns Promise</li></ul></dd>
|
|
|
930
930
|
<br class="clear">
|
|
931
931
|
|
|
932
932
|
<footer>
|
|
933
|
-
Documentation generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc 4.0.
|
|
933
|
+
Documentation generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc 4.0.2</a> on Wed May 10 2023 07:15:40 GMT-0700 (Pacific Daylight Time) using the <a href="https://github.com/clenemt/docdash">docdash</a> theme.
|
|
934
934
|
</footer>
|
|
935
935
|
|
|
936
936
|
<script>prettyPrint();</script>
|
|
@@ -406,7 +406,7 @@ export default PluginManager;
|
|
|
406
406
|
<br class="clear">
|
|
407
407
|
|
|
408
408
|
<footer>
|
|
409
|
-
Documentation generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc 4.0.
|
|
409
|
+
Documentation generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc 4.0.2</a> on Wed May 10 2023 07:15:40 GMT-0700 (Pacific Daylight Time) using the <a href="https://github.com/clenemt/docdash">docdash</a> theme.
|
|
410
410
|
</footer>
|
|
411
411
|
|
|
412
412
|
<script>prettyPrint();</script>
|
package/docs/Project.html
CHANGED
|
@@ -2056,7 +2056,7 @@ plugins and initializes them.</li></ul></dd>
|
|
|
2056
2056
|
<br class="clear">
|
|
2057
2057
|
|
|
2058
2058
|
<footer>
|
|
2059
|
-
Documentation generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc 4.0.
|
|
2059
|
+
Documentation generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc 4.0.2</a> on Wed May 10 2023 07:15:40 GMT-0700 (Pacific Daylight Time) using the <a href="https://github.com/clenemt/docdash">docdash</a> theme.
|
|
2060
2060
|
</footer>
|
|
2061
2061
|
|
|
2062
2062
|
<script>prettyPrint();</script>
|
package/docs/Project.js.html
CHANGED
|
@@ -387,7 +387,7 @@ export default Project;
|
|
|
387
387
|
<br class="clear">
|
|
388
388
|
|
|
389
389
|
<footer>
|
|
390
|
-
Documentation generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc 4.0.
|
|
390
|
+
Documentation generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc 4.0.2</a> on Wed May 10 2023 07:15:40 GMT-0700 (Pacific Daylight Time) using the <a href="https://github.com/clenemt/docdash">docdash</a> theme.
|
|
391
391
|
</footer>
|
|
392
392
|
|
|
393
393
|
<script>prettyPrint();</script>
|
|
@@ -713,7 +713,7 @@
|
|
|
713
713
|
<br class="clear">
|
|
714
714
|
|
|
715
715
|
<footer>
|
|
716
|
-
Documentation generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc 4.0.
|
|
716
|
+
Documentation generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc 4.0.2</a> on Wed May 10 2023 07:15:40 GMT-0700 (Pacific Daylight Time) using the <a href="https://github.com/clenemt/docdash">docdash</a> theme.
|
|
717
717
|
</footer>
|
|
718
718
|
|
|
719
719
|
<script>prettyPrint();</script>
|
|
@@ -1033,7 +1033,7 @@ While parsing, it excludes empty lines and trims leading/trailing whitespace on
|
|
|
1033
1033
|
<br class="clear">
|
|
1034
1034
|
|
|
1035
1035
|
<footer>
|
|
1036
|
-
Documentation generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc 4.0.
|
|
1036
|
+
Documentation generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc 4.0.2</a> on Wed May 10 2023 07:15:40 GMT-0700 (Pacific Daylight Time) using the <a href="https://github.com/clenemt/docdash">docdash</a> theme.
|
|
1037
1037
|
</footer>
|
|
1038
1038
|
|
|
1039
1039
|
<script>prettyPrint();</script>
|
|
@@ -710,7 +710,7 @@
|
|
|
710
710
|
<br class="clear">
|
|
711
711
|
|
|
712
712
|
<footer>
|
|
713
|
-
Documentation generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc 4.0.
|
|
713
|
+
Documentation generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc 4.0.2</a> on Wed May 10 2023 07:15:40 GMT-0700 (Pacific Daylight Time) using the <a href="https://github.com/clenemt/docdash">docdash</a> theme.
|
|
714
714
|
</footer>
|
|
715
715
|
|
|
716
716
|
<script>prettyPrint();</script>
|
|
@@ -271,7 +271,7 @@
|
|
|
271
271
|
<br class="clear">
|
|
272
272
|
|
|
273
273
|
<footer>
|
|
274
|
-
Documentation generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc 4.0.
|
|
274
|
+
Documentation generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc 4.0.2</a> on Wed May 10 2023 07:15:40 GMT-0700 (Pacific Daylight Time) using the <a href="https://github.com/clenemt/docdash">docdash</a> theme.
|
|
275
275
|
</footer>
|
|
276
276
|
|
|
277
277
|
<script>prettyPrint();</script>
|
|
@@ -271,7 +271,7 @@
|
|
|
271
271
|
<br class="clear">
|
|
272
272
|
|
|
273
273
|
<footer>
|
|
274
|
-
Documentation generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc 4.0.
|
|
274
|
+
Documentation generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc 4.0.2</a> on Wed May 10 2023 07:15:40 GMT-0700 (Pacific Daylight Time) using the <a href="https://github.com/clenemt/docdash">docdash</a> theme.
|
|
275
275
|
</footer>
|
|
276
276
|
|
|
277
277
|
<script>prettyPrint();</script>
|
|
@@ -785,7 +785,7 @@ The options must contain the following required properties:
|
|
|
785
785
|
<br class="clear">
|
|
786
786
|
|
|
787
787
|
<footer>
|
|
788
|
-
Documentation generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc 4.0.
|
|
788
|
+
Documentation generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc 4.0.2</a> on Wed May 10 2023 07:15:40 GMT-0700 (Pacific Daylight Time) using the <a href="https://github.com/clenemt/docdash">docdash</a> theme.
|
|
789
789
|
</footer>
|
|
790
790
|
|
|
791
791
|
<script>prettyPrint();</script>
|
|
@@ -321,7 +321,7 @@
|
|
|
321
321
|
<br class="clear">
|
|
322
322
|
|
|
323
323
|
<footer>
|
|
324
|
-
Documentation generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc 4.0.
|
|
324
|
+
Documentation generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc 4.0.2</a> on Wed May 10 2023 07:15:40 GMT-0700 (Pacific Daylight Time) using the <a href="https://github.com/clenemt/docdash">docdash</a> theme.
|
|
325
325
|
</footer>
|
|
326
326
|
|
|
327
327
|
<script>prettyPrint();</script>
|
|
@@ -84,7 +84,7 @@
|
|
|
84
84
|
|
|
85
85
|
<dt class="tag-source">Source:</dt>
|
|
86
86
|
<dd class="tag-source"><ul class="dummy"><li>
|
|
87
|
-
<a href="rules_ResourceQuoteStyle.js.html">rules/ResourceQuoteStyle.js</a>, <a href="rules_ResourceQuoteStyle.js.html#
|
|
87
|
+
<a href="rules_ResourceQuoteStyle.js.html">rules/ResourceQuoteStyle.js</a>, <a href="rules_ResourceQuoteStyle.js.html#line37">line 37</a>
|
|
88
88
|
</li></ul></dd>
|
|
89
89
|
|
|
90
90
|
|
|
@@ -187,7 +187,7 @@
|
|
|
187
187
|
|
|
188
188
|
<dt class="tag-source">Source:</dt>
|
|
189
189
|
<dd class="tag-source"><ul class="dummy"><li>
|
|
190
|
-
<a href="rules_ResourceQuoteStyle.js.html">rules/ResourceQuoteStyle.js</a>, <a href="rules_ResourceQuoteStyle.js.html#
|
|
190
|
+
<a href="rules_ResourceQuoteStyle.js.html">rules/ResourceQuoteStyle.js</a>, <a href="rules_ResourceQuoteStyle.js.html#line204">line 204</a>
|
|
191
191
|
</li></ul></dd>
|
|
192
192
|
|
|
193
193
|
|
|
@@ -271,7 +271,7 @@
|
|
|
271
271
|
<br class="clear">
|
|
272
272
|
|
|
273
273
|
<footer>
|
|
274
|
-
Documentation generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc 4.0.
|
|
274
|
+
Documentation generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc 4.0.2</a> on Wed May 10 2023 07:15:40 GMT-0700 (Pacific Daylight Time) using the <a href="https://github.com/clenemt/docdash">docdash</a> theme.
|
|
275
275
|
</footer>
|
|
276
276
|
|
|
277
277
|
<script>prettyPrint();</script>
|
|
@@ -334,7 +334,7 @@ The options must contain the following required properties:
|
|
|
334
334
|
<br class="clear">
|
|
335
335
|
|
|
336
336
|
<footer>
|
|
337
|
-
Documentation generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc 4.0.
|
|
337
|
+
Documentation generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc 4.0.2</a> on Wed May 10 2023 07:15:40 GMT-0700 (Pacific Daylight Time) using the <a href="https://github.com/clenemt/docdash">docdash</a> theme.
|
|
338
338
|
</footer>
|
|
339
339
|
|
|
340
340
|
<script>prettyPrint();</script>
|
|
@@ -335,7 +335,7 @@ Resource instances have the state field value of
|
|
|
335
335
|
<br class="clear">
|
|
336
336
|
|
|
337
337
|
<footer>
|
|
338
|
-
Documentation generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc 4.0.
|
|
338
|
+
Documentation generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc 4.0.2</a> on Wed May 10 2023 07:15:40 GMT-0700 (Pacific Daylight Time) using the <a href="https://github.com/clenemt/docdash">docdash</a> theme.
|
|
339
339
|
</footer>
|
|
340
340
|
|
|
341
341
|
<script>prettyPrint();</script>
|
|
@@ -334,7 +334,7 @@ The options must contain the following required properties:
|
|
|
334
334
|
<br class="clear">
|
|
335
335
|
|
|
336
336
|
<footer>
|
|
337
|
-
Documentation generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc 4.0.
|
|
337
|
+
Documentation generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc 4.0.2</a> on Wed May 10 2023 07:15:40 GMT-0700 (Pacific Daylight Time) using the <a href="https://github.com/clenemt/docdash">docdash</a> theme.
|
|
338
338
|
</footer>
|
|
339
339
|
|
|
340
340
|
<script>prettyPrint();</script>
|
|
@@ -321,7 +321,7 @@
|
|
|
321
321
|
<br class="clear">
|
|
322
322
|
|
|
323
323
|
<footer>
|
|
324
|
-
Documentation generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc 4.0.
|
|
324
|
+
Documentation generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc 4.0.2</a> on Wed May 10 2023 07:15:40 GMT-0700 (Pacific Daylight Time) using the <a href="https://github.com/clenemt/docdash">docdash</a> theme.
|
|
325
325
|
</footer>
|
|
326
326
|
|
|
327
327
|
<script>prettyPrint();</script>
|
package/docs/RuleManager.html
CHANGED
|
@@ -1579,7 +1579,7 @@ known by this instance of the rule manager.</li></ul></dd>
|
|
|
1579
1579
|
<br class="clear">
|
|
1580
1580
|
|
|
1581
1581
|
<footer>
|
|
1582
|
-
Documentation generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc 4.0.
|
|
1582
|
+
Documentation generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc 4.0.2</a> on Wed May 10 2023 07:15:40 GMT-0700 (Pacific Daylight Time) using the <a href="https://github.com/clenemt/docdash">docdash</a> theme.
|
|
1583
1583
|
</footer>
|
|
1584
1584
|
|
|
1585
1585
|
<script>prettyPrint();</script>
|
package/docs/RuleManager.js.html
CHANGED
|
@@ -339,7 +339,7 @@ export default RuleManager;</code></pre>
|
|
|
339
339
|
<br class="clear">
|
|
340
340
|
|
|
341
341
|
<footer>
|
|
342
|
-
Documentation generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc 4.0.
|
|
342
|
+
Documentation generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc 4.0.2</a> on Wed May 10 2023 07:15:40 GMT-0700 (Pacific Daylight Time) using the <a href="https://github.com/clenemt/docdash">docdash</a> theme.
|
|
343
343
|
</footer>
|
|
344
344
|
|
|
345
345
|
<script>prettyPrint();</script>
|
package/docs/RuleSet.html
CHANGED
|
@@ -943,7 +943,7 @@ all rules are returned.</td>
|
|
|
943
943
|
<br class="clear">
|
|
944
944
|
|
|
945
945
|
<footer>
|
|
946
|
-
Documentation generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc 4.0.
|
|
946
|
+
Documentation generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc 4.0.2</a> on Wed May 10 2023 07:15:40 GMT-0700 (Pacific Daylight Time) using the <a href="https://github.com/clenemt/docdash">docdash</a> theme.
|
|
947
947
|
</footer>
|
|
948
948
|
|
|
949
949
|
<script>prettyPrint();</script>
|
package/docs/RuleSet.js.html
CHANGED
|
@@ -157,7 +157,7 @@ export default RuleSet;
|
|
|
157
157
|
<br class="clear">
|
|
158
158
|
|
|
159
159
|
<footer>
|
|
160
|
-
Documentation generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc 4.0.
|
|
160
|
+
Documentation generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc 4.0.2</a> on Wed May 10 2023 07:15:40 GMT-0700 (Pacific Daylight Time) using the <a href="https://github.com/clenemt/docdash">docdash</a> theme.
|
|
161
161
|
</footer>
|
|
162
162
|
|
|
163
163
|
<script>prettyPrint();</script>
|
package/docs/SourceFile.html
CHANGED
|
@@ -719,7 +719,7 @@ resource files, or lines in the case of other types of files.</li></ul></dd>
|
|
|
719
719
|
<br class="clear">
|
|
720
720
|
|
|
721
721
|
<footer>
|
|
722
|
-
Documentation generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc 4.0.
|
|
722
|
+
Documentation generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc 4.0.2</a> on Wed May 10 2023 07:15:40 GMT-0700 (Pacific Daylight Time) using the <a href="https://github.com/clenemt/docdash">docdash</a> theme.
|
|
723
723
|
</footer>
|
|
724
724
|
|
|
725
725
|
<script>prettyPrint();</script>
|
package/docs/SourceFile.js.html
CHANGED
|
@@ -211,7 +211,7 @@ export default SourceFile;
|
|
|
211
211
|
<br class="clear">
|
|
212
212
|
|
|
213
213
|
<footer>
|
|
214
|
-
Documentation generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc 4.0.
|
|
214
|
+
Documentation generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc 4.0.2</a> on Wed May 10 2023 07:15:40 GMT-0700 (Pacific Daylight Time) using the <a href="https://github.com/clenemt/docdash">docdash</a> theme.
|
|
215
215
|
</footer>
|
|
216
216
|
|
|
217
217
|
<script>prettyPrint();</script>
|
package/docs/XliffParser.html
CHANGED
|
@@ -383,7 +383,7 @@ that result from parsing the file.</li></ul></dd>
|
|
|
383
383
|
<br class="clear">
|
|
384
384
|
|
|
385
385
|
<footer>
|
|
386
|
-
Documentation generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc 4.0.
|
|
386
|
+
Documentation generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc 4.0.2</a> on Wed May 10 2023 07:15:40 GMT-0700 (Pacific Daylight Time) using the <a href="https://github.com/clenemt/docdash">docdash</a> theme.
|
|
387
387
|
</footer>
|
|
388
388
|
|
|
389
389
|
<script>prettyPrint();</script>
|
package/docs/XliffPlugin.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.
|
|
302
|
+
Documentation generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc 4.0.2</a> on Wed May 10 2023 07:15:40 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>
|
|
@@ -131,7 +131,7 @@ export default AnsiConsoleFormatter;
|
|
|
131
131
|
<br class="clear">
|
|
132
132
|
|
|
133
133
|
<footer>
|
|
134
|
-
Documentation generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc 4.0.
|
|
134
|
+
Documentation generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc 4.0.2</a> on Wed May 10 2023 07:15:40 GMT-0700 (Pacific Daylight Time) using the <a href="https://github.com/clenemt/docdash">docdash</a> theme.
|
|
135
135
|
</footer>
|
|
136
136
|
|
|
137
137
|
<script>prettyPrint();</script>
|
|
@@ -153,7 +153,7 @@ export class ConfigBasedFormatter extends Formatter {
|
|
|
153
153
|
<br class="clear">
|
|
154
154
|
|
|
155
155
|
<footer>
|
|
156
|
-
Documentation generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc 4.0.
|
|
156
|
+
Documentation generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc 4.0.2</a> on Wed May 10 2023 07:15:40 GMT-0700 (Pacific Daylight Time) using the <a href="https://github.com/clenemt/docdash">docdash</a> theme.
|
|
157
157
|
</footer>
|
|
158
158
|
|
|
159
159
|
<script>prettyPrint();</script>
|
package/docs/global.html
CHANGED
|
@@ -951,7 +951,7 @@ by the the excludes and includes list
|
|
|
951
951
|
<br class="clear">
|
|
952
952
|
|
|
953
953
|
<footer>
|
|
954
|
-
Documentation generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc 4.0.
|
|
954
|
+
Documentation generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc 4.0.2</a> on Wed May 10 2023 07:15:40 GMT-0700 (Pacific Daylight Time) using the <a href="https://github.com/clenemt/docdash">docdash</a> theme.
|
|
955
955
|
</footer>
|
|
956
956
|
|
|
957
957
|
<script>prettyPrint();</script>
|
package/docs/index.html
CHANGED
|
@@ -71,7 +71,7 @@
|
|
|
71
71
|
<br class="clear">
|
|
72
72
|
|
|
73
73
|
<footer>
|
|
74
|
-
Documentation generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc 4.0.
|
|
74
|
+
Documentation generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc 4.0.2</a> on Wed May 10 2023 07:15:40 GMT-0700 (Pacific Daylight Time) using the <a href="https://github.com/clenemt/docdash">docdash</a> theme.
|
|
75
75
|
</footer>
|
|
76
76
|
|
|
77
77
|
<script>prettyPrint();</script>
|
|
@@ -126,7 +126,7 @@ export default XliffParser;
|
|
|
126
126
|
<br class="clear">
|
|
127
127
|
|
|
128
128
|
<footer>
|
|
129
|
-
Documentation generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc 4.0.
|
|
129
|
+
Documentation generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc 4.0.2</a> on Wed May 10 2023 07:15:40 GMT-0700 (Pacific Daylight Time) using the <a href="https://github.com/clenemt/docdash">docdash</a> theme.
|
|
130
130
|
</footer>
|
|
131
131
|
|
|
132
132
|
<script>prettyPrint();</script>
|
|
@@ -106,7 +106,7 @@ export default XliffPlugin;
|
|
|
106
106
|
<br class="clear">
|
|
107
107
|
|
|
108
108
|
<footer>
|
|
109
|
-
Documentation generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc 4.0.
|
|
109
|
+
Documentation generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc 4.0.2</a> on Wed May 10 2023 07:15:40 GMT-0700 (Pacific Daylight Time) using the <a href="https://github.com/clenemt/docdash">docdash</a> theme.
|
|
110
110
|
</footer>
|
|
111
111
|
|
|
112
112
|
<script>prettyPrint();</script>
|
|
@@ -146,7 +146,7 @@ export default ResourceCompleteness;
|
|
|
146
146
|
<br class="clear">
|
|
147
147
|
|
|
148
148
|
<footer>
|
|
149
|
-
Documentation generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc 4.0.
|
|
149
|
+
Documentation generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc 4.0.2</a> on Wed May 10 2023 07:15:40 GMT-0700 (Pacific Daylight Time) using the <a href="https://github.com/clenemt/docdash">docdash</a> theme.
|
|
150
150
|
</footer>
|
|
151
151
|
|
|
152
152
|
<script>prettyPrint();</script>
|
|
@@ -299,7 +299,7 @@ export default ResourceDNTTerms;
|
|
|
299
299
|
<br class="clear">
|
|
300
300
|
|
|
301
301
|
<footer>
|
|
302
|
-
Documentation generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc 4.0.
|
|
302
|
+
Documentation generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc 4.0.2</a> on Wed May 10 2023 07:15:40 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>
|
|
@@ -199,7 +199,7 @@ export default ResourceEdgeWhitespace;
|
|
|
199
199
|
<br class="clear">
|
|
200
200
|
|
|
201
201
|
<footer>
|
|
202
|
-
Documentation generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc 4.0.
|
|
202
|
+
Documentation generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc 4.0.2</a> on Wed May 10 2023 07:15:40 GMT-0700 (Pacific Daylight Time) using the <a href="https://github.com/clenemt/docdash">docdash</a> theme.
|
|
203
203
|
</footer>
|
|
204
204
|
|
|
205
205
|
<script>prettyPrint();</script>
|