ilib-lint 1.5.1 → 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 +39 -9
- package/README.md.orig +52 -20
- 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 +2 -2
- 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 +10 -6
- 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/ResourceICUPluralTranslation.js +9 -5
- 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
|
@@ -323,20 +323,39 @@ This apply mostly to resource files, such as XLIFF files.
|
|
|
323
323
|
|
|
324
324
|
The built-in rules are:
|
|
325
325
|
|
|
326
|
-
- resource-
|
|
326
|
+
- [resource-completeness](./docs/resource-completeness.md) - Make sure every resource has a source and
|
|
327
|
+
a target string
|
|
328
|
+
- [resource-dnt-terms](./docs/resource-dnt-terms.md) - Error if a "do not translate" terms is transalted
|
|
329
|
+
- [resource-edge-whitespace](./docs/resource-edge-whitespace.md) - Error if the leading and trailing whitespace
|
|
330
|
+
in the target does not match the source
|
|
331
|
+
- [resource-icu-plurals](./docs/resource-icu-plurals.md) - Check for ICU-style plurals. Also works with formatjs
|
|
327
332
|
plurals, as it has the same syntax.
|
|
328
|
-
- resource-
|
|
329
|
-
string also has quotes and that those quotes are appropriate for the locale
|
|
330
|
-
- resource-url-match - if the source string contains references to URLs, check
|
|
331
|
-
that the target string also contains references to the same URLs
|
|
332
|
-
- resource-named-params - Ensure that named parameters that appear in the source
|
|
333
|
+
- [resource-named-params](./docs/resource-named-params.md) - Ensure that named parameters that appear in the source
|
|
333
334
|
string are also used in the translated string
|
|
334
|
-
- resource-
|
|
335
|
-
|
|
336
|
-
- resource-
|
|
335
|
+
- [resource-no-double-byte-space](./docs/resource-no-double-byte-space.md) - Do not use "double-byte" whitespace characters
|
|
336
|
+
- [resource-no-fullwidth-digits](./docs/resource-no-fullwidth-digits.md) -Do not use "full width" digits
|
|
337
|
+
- [resource-no-fullwidth-latin](./docs/resource-no-fullwidth-latin.md) - Do not use "full width" Latin letters (Romaji)
|
|
338
|
+
- [resource-no-fullwidth-punctuation-subset](./docs/resource-no-fullwidth-punctuation-subset.md) - Do not use certain
|
|
339
|
+
"full width" punctuation characters
|
|
340
|
+
- [resource-no-halfwidth-kana-characters](./docs/resource-no-halfwidth-kana-characters.md) - Do not use "half width"
|
|
341
|
+
Japanese kana characters
|
|
342
|
+
- [resource-no-space-between-double-and-single-byte-character](./docs/resource-no-space-between-double-and-single-byte-character.md) - Do not put a space between a double-byte
|
|
343
|
+
and a single-byte character
|
|
344
|
+
- [resource-no-space-with-fullwidth-punctuation](./docs/resource-no-space-with-fullwidth-punctuation.md) - Do not put spaces before or after certain
|
|
345
|
+
"full width" punctuation characters.
|
|
346
|
+
- [resource-no-translation](./docs/resource-no-translation.md) - Warning the target translation comes back the same as
|
|
347
|
+
the original source string
|
|
348
|
+
- [resource-quote-style](./docs/resource-quote-style.md) - If the source string has quotes, check that the target
|
|
349
|
+
string also has quotes and that those quotes are appropriate for the locale
|
|
350
|
+
- [resource-state-checker](./docs/resource-state-checker.md) - Ensure that all resources have a particular state
|
|
337
351
|
field value, or one of an array of state field values. The parameter for this
|
|
338
352
|
rule should either be a string or an array of strings that name the allowed
|
|
339
353
|
values.
|
|
354
|
+
- [resource-unique-keys](./docs/resource-unique-keys.md) - Ensure that the keys are unique within a locale across
|
|
355
|
+
all resource files
|
|
356
|
+
- [resource-url-match](./docs/resource-url-match.md) - If the source string contains references to URLs, check
|
|
357
|
+
that the target string also contains references to the same URLs
|
|
358
|
+
|
|
340
359
|
|
|
341
360
|
## Writing Plugins
|
|
342
361
|
|
|
@@ -591,6 +610,17 @@ limitations under the License.
|
|
|
591
610
|
|
|
592
611
|
## Release Notes
|
|
593
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
|
+
|
|
618
|
+
### v1.5.2
|
|
619
|
+
|
|
620
|
+
- update the documentation above to enumerate all the current resource plugins
|
|
621
|
+
- fixed a bug where some resources cause a crash in the
|
|
622
|
+
resource-icu-plurals-translated rule
|
|
623
|
+
|
|
594
624
|
### v1.5.1
|
|
595
625
|
|
|
596
626
|
- state checker rule was not configured properly, so it did not run. Now, it will.
|
package/README.md.orig
CHANGED
|
@@ -323,20 +323,39 @@ This apply mostly to resource files, such as XLIFF files.
|
|
|
323
323
|
|
|
324
324
|
The built-in rules are:
|
|
325
325
|
|
|
326
|
-
- resource-
|
|
326
|
+
- [resource-completeness](./docs/resource-completeness.md) - Make sure every resource has a source and
|
|
327
|
+
a target string
|
|
328
|
+
- [resource-dnt-terms](./docs/resource-dnt-terms.md) - Error if a "do not translate" terms is transalted
|
|
329
|
+
- [resource-edge-whitespace](./docs/resource-edge-whitespace.md) - Error if the leading and trailing whitespace
|
|
330
|
+
in the target does not match the source
|
|
331
|
+
- [resource-icu-plurals](./docs/resource-icu-plurals.md) - Check for ICU-style plurals. Also works with formatjs
|
|
327
332
|
plurals, as it has the same syntax.
|
|
328
|
-
- resource-
|
|
329
|
-
string also has quotes and that those quotes are appropriate for the locale
|
|
330
|
-
- resource-url-match - if the source string contains references to URLs, check
|
|
331
|
-
that the target string also contains references to the same URLs
|
|
332
|
-
- resource-named-params - Ensure that named parameters that appear in the source
|
|
333
|
+
- [resource-named-params](./docs/resource-named-params.md) - Ensure that named parameters that appear in the source
|
|
333
334
|
string are also used in the translated string
|
|
334
|
-
- resource-
|
|
335
|
-
|
|
336
|
-
- resource-
|
|
335
|
+
- [resource-no-double-byte-space](./docs/resource-no-double-byte-space.md) - Do not use "double-byte" whitespace characters
|
|
336
|
+
- [resource-no-fullwidth-digits](./docs/resource-no-fullwidth-digits.md) -Do not use "full width" digits
|
|
337
|
+
- [resource-no-fullwidth-latin](./docs/resource-no-fullwidth-latin.md) - Do not use "full width" Latin letters (Romaji)
|
|
338
|
+
- [resource-no-fullwidth-punctuation-subset](./docs/resource-no-fullwidth-punctuation-subset.md) - Do not use certain
|
|
339
|
+
"full width" punctuation characters
|
|
340
|
+
- [resource-no-halfwidth-kana-characters](./docs/resource-no-halfwidth-kana-characters.md) - Do not use "half width"
|
|
341
|
+
Japanese kana characters
|
|
342
|
+
- [resource-no-space-between-double-and-single-byte-character](./docs/resource-no-space-between-double-and-single-byte-character.md) - Do not put a space between a double-byte
|
|
343
|
+
and a single-byte character
|
|
344
|
+
- [resource-no-space-with-fullwidth-punctuation](./docs/resource-no-space-with-fullwidth-punctuation.md) - Do not put spaces before or after certain
|
|
345
|
+
"full width" punctuation characters.
|
|
346
|
+
- [resource-no-translation](./docs/resource-no-translation.md) - Warning the target translation comes back the same as
|
|
347
|
+
the original source string
|
|
348
|
+
- [resource-quote-style](./docs/resource-quote-style.md) - If the source string has quotes, check that the target
|
|
349
|
+
string also has quotes and that those quotes are appropriate for the locale
|
|
350
|
+
- [resource-state-checker](./docs/resource-state-checker.md) - Ensure that all resources have a particular state
|
|
337
351
|
field value, or one of an array of state field values. The parameter for this
|
|
338
352
|
rule should either be a string or an array of strings that name the allowed
|
|
339
353
|
values.
|
|
354
|
+
- [resource-unique-keys](./docs/resource-unique-keys.md) - Ensure that the keys are unique within a locale across
|
|
355
|
+
all resource files
|
|
356
|
+
- [resource-url-match](./docs/resource-url-match.md) - If the source string contains references to URLs, check
|
|
357
|
+
that the target string also contains references to the same URLs
|
|
358
|
+
|
|
340
359
|
|
|
341
360
|
## Writing Plugins
|
|
342
361
|
|
|
@@ -599,27 +618,44 @@ limitations under the License.
|
|
|
599
618
|
|
|
600
619
|
## Release Notes
|
|
601
620
|
|
|
602
|
-
|
|
621
|
+
<<<<<<< HEAD
|
|
622
|
+
### v1.6.0
|
|
603
623
|
|
|
604
624
|
- added the ability to scan source code files and apply rules
|
|
605
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
|
+
|
|
636
|
+
### v1.5.2
|
|
637
|
+
|
|
638
|
+
- update the documentation above to enumerate all the current resource plugins
|
|
639
|
+
- fixed a bug where some resources cause a crash in the
|
|
640
|
+
resource-icu-plurals-translated rule
|
|
641
|
+
|
|
642
|
+
### v1.5.1
|
|
643
|
+
|
|
644
|
+
- state checker rule was not configured properly, so it did not run. Now, it will.
|
|
645
|
+
|
|
646
|
+
### v1.5.0
|
|
647
|
+
|
|
606
648
|
- added rule to ensure whitespaces at the edges of string are preserved in the same form
|
|
607
649
|
- added rule to check if resources have both source and target defined
|
|
608
650
|
- fixed bug where resources of type array or plural were not getting
|
|
609
651
|
processed properly in the declarative rules
|
|
610
652
|
- added rule to check Do Not Translate terms in resources
|
|
611
653
|
- added rule to warn against half-width kana characters
|
|
612
|
-
<<<<<<< HEAD
|
|
613
|
-
=======
|
|
614
654
|
- added rule to warn against double-byte whitespace characters
|
|
615
655
|
- added rule to warn of whitespace adjacent to certain fullwidth punctuation characters
|
|
616
656
|
- added rule to warn of a space between double-byte and single-byte character
|
|
617
|
-
|
|
618
|
-
### v1.5.0
|
|
619
|
-
|
|
620
657
|
- added rule to check whether or not there is a translation for each source string in
|
|
621
658
|
a resource
|
|
622
|
-
>>>>>>> main
|
|
623
659
|
- removed ability for the ICU plural rule to report results on the
|
|
624
660
|
source text
|
|
625
661
|
- now it only checks the target text
|
|
@@ -636,10 +672,6 @@ limitations under the License.
|
|
|
636
672
|
|
|
637
673
|
- added resource-state-checker Rule so that you can ensure that all
|
|
638
674
|
resources have a particular state field value
|
|
639
|
-
- moved functionality into Project class
|
|
640
|
-
- main loop moved from index.js into the run() method
|
|
641
|
-
- directory walk function moved to a method of Project
|
|
642
|
-
|
|
643
675
|
### v1.2.1
|
|
644
676
|
|
|
645
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>
|
|
@@ -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_ResourceICUPluralTranslation.js.html">rules/ResourceICUPluralTranslation.js</a>, <a href="rules_ResourceICUPluralTranslation.js.html#
|
|
190
|
+
<a href="rules_ResourceICUPluralTranslation.js.html">rules/ResourceICUPluralTranslation.js</a>, <a href="rules_ResourceICUPluralTranslation.js.html#line222">line 222</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>
|
|
@@ -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>
|