ilib-lint 1.5.0 → 1.5.1
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 +4 -3
- package/README.md.orig +27 -10
- 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 +8 -8
- package/docs/PluginManager.js.html +4 -2
- 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 +1 -1
- 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 +2 -2
- 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 +1 -1
- 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 +1 -1
- package/src/PluginManager.js +3 -1
package/README.md
CHANGED
|
@@ -591,6 +591,10 @@ limitations under the License.
|
|
|
591
591
|
|
|
592
592
|
## Release Notes
|
|
593
593
|
|
|
594
|
+
### v1.5.1
|
|
595
|
+
|
|
596
|
+
- state checker rule was not configured properly, so it did not run. Now, it will.
|
|
597
|
+
|
|
594
598
|
### v1.5.0
|
|
595
599
|
|
|
596
600
|
- added rule to ensure whitespaces at the edges of string are preserved in the same form
|
|
@@ -602,9 +606,6 @@ limitations under the License.
|
|
|
602
606
|
- added rule to warn against double-byte whitespace characters
|
|
603
607
|
- added rule to warn of whitespace adjacent to certain fullwidth punctuation characters
|
|
604
608
|
- added rule to warn of a space between double-byte and single-byte character
|
|
605
|
-
|
|
606
|
-
### v1.5.0
|
|
607
|
-
|
|
608
609
|
- added rule to check whether or not there is a translation for each source string in
|
|
609
610
|
a resource
|
|
610
611
|
- removed ability for the ICU plural rule to report results on the
|
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
|
}
|
|
@@ -374,16 +374,22 @@ multiple instances of each class during the run of the program.
|
|
|
374
374
|
### Parsers
|
|
375
375
|
|
|
376
376
|
The job of the parser is to convert a source file into an intermediate representation
|
|
377
|
-
that rules can easily digest. There are
|
|
377
|
+
that rules can easily digest. There are a few standard representations that many
|
|
378
378
|
rules use, but your parser and rules can use their own representation, as
|
|
379
|
-
long as the parser and the rules agree on what that format is. Typically,
|
|
380
|
-
parser will produce something like an abstract syntax tree (AST) that
|
|
381
|
-
know how to traverse and interpret.
|
|
379
|
+
long as the parser and the rules agree on what that format is. Typically, a
|
|
380
|
+
sophisticated parser will produce something like an abstract syntax tree (AST) that
|
|
381
|
+
the rules know how to traverse and interpret. The standard representations are
|
|
382
|
+
much simpler than that. These parsers should pick a unique name for their
|
|
383
|
+
representation so that the appropriate rules can parse that representation.
|
|
382
384
|
|
|
383
|
-
The
|
|
385
|
+
The standard representations are:
|
|
384
386
|
|
|
385
|
-
- resources - the file is converted into
|
|
387
|
+
- resources - the file is converted into an array of
|
|
388
|
+
[Resource](https://github.com/iLib-js/ilib-tools-common/blob/main/src/Resource.js)
|
|
389
|
+
instances
|
|
386
390
|
- lines - the file in converted into a simple array of lines
|
|
391
|
+
- source - the file is not parsed. Instead, the entire text of the file is used to
|
|
392
|
+
search for problems. (Usually with regular expressions.)
|
|
387
393
|
|
|
388
394
|
The resources representation is intended to represent entries in resource files
|
|
389
395
|
such as xliff files, gnu po files, or java properties files. Each entry in the
|
|
@@ -447,9 +453,9 @@ Each declarative rule should have the following properties:
|
|
|
447
453
|
* resource-target - check resources in a resource file. If
|
|
448
454
|
the regular expressions match in the target string of a
|
|
449
455
|
resource, a result will be generated
|
|
450
|
-
*
|
|
456
|
+
* source-checker - Check the text in a source file, such as a
|
|
451
457
|
java file or a python file. Regular expressions that match
|
|
452
|
-
in the source file will generate results
|
|
458
|
+
anywhere in the source file will generate results
|
|
453
459
|
* name (String) - a unique dash-separated name of this rule.
|
|
454
460
|
eg. "resource-url-match",
|
|
455
461
|
* description (String) - a description of what this rule is trying
|
|
@@ -469,6 +475,8 @@ Each declarative rule should have the following properties:
|
|
|
469
475
|
and avoided in the future. Often, this is a link to a markdown file
|
|
470
476
|
in the docs folder on the github repo for the plugin, but it can be
|
|
471
477
|
any link you like.
|
|
478
|
+
* severity (String) - the severity of this result if this check fails.
|
|
479
|
+
This should be one of "error", "warning", or "suggestion".
|
|
472
480
|
|
|
473
481
|
Programmatic rules are used when the requirements for the rules are more complicated
|
|
474
482
|
than a simple regular expression string can handle. For example, a rule that checks
|
|
@@ -593,6 +601,8 @@ limitations under the License.
|
|
|
593
601
|
|
|
594
602
|
### v1.5.0
|
|
595
603
|
|
|
604
|
+
- added the ability to scan source code files and apply rules
|
|
605
|
+
- added source-checker Rule for declarative rules
|
|
596
606
|
- added rule to ensure whitespaces at the edges of string are preserved in the same form
|
|
597
607
|
- added rule to check if resources have both source and target defined
|
|
598
608
|
- fixed bug where resources of type array or plural were not getting
|
|
@@ -603,6 +613,10 @@ limitations under the License.
|
|
|
603
613
|
=======
|
|
604
614
|
- added rule to warn against double-byte whitespace characters
|
|
605
615
|
- added rule to warn of whitespace adjacent to certain fullwidth punctuation characters
|
|
616
|
+
- added rule to warn of a space between double-byte and single-byte character
|
|
617
|
+
|
|
618
|
+
### v1.5.0
|
|
619
|
+
|
|
606
620
|
- added rule to check whether or not there is a translation for each source string in
|
|
607
621
|
a resource
|
|
608
622
|
>>>>>>> main
|
|
@@ -622,6 +636,9 @@ limitations under the License.
|
|
|
622
636
|
|
|
623
637
|
- added resource-state-checker Rule so that you can ensure that all
|
|
624
638
|
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
|
|
625
642
|
|
|
626
643
|
### v1.2.1
|
|
627
644
|
|
|
@@ -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.0</a> on
|
|
351
|
+
Documentation generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc 4.0.0</a> on Fri Apr 28 2023 06:52:47 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.0</a> on
|
|
358
|
+
Documentation generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc 4.0.0</a> on Fri Apr 28 2023 06:52:47 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.0</a> on
|
|
708
|
+
Documentation generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc 4.0.0</a> on Fri Apr 28 2023 06:52:47 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.0</a> on
|
|
152
|
+
Documentation generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc 4.0.0</a> on Fri Apr 28 2023 06:52:47 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.0</a> on
|
|
483
|
+
Documentation generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc 4.0.0</a> on Fri Apr 28 2023 06:52:47 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.0</a> on
|
|
205
|
+
Documentation generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc 4.0.0</a> on Fri Apr 28 2023 06:52:47 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.0</a> on
|
|
734
|
+
Documentation generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc 4.0.0</a> on Fri Apr 28 2023 06:52:47 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.0</a> on
|
|
185
|
+
Documentation generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc 4.0.0</a> on Fri Apr 28 2023 06:52:47 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.0</a> on
|
|
597
|
+
Documentation generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc 4.0.0</a> on Fri Apr 28 2023 06:52:47 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.0</a> on
|
|
158
|
+
Documentation generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc 4.0.0</a> on Fri Apr 28 2023 06:52:47 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
|
@@ -85,7 +85,7 @@ and then maintains references to them</div>
|
|
|
85
85
|
|
|
86
86
|
<dt class="tag-source">Source:</dt>
|
|
87
87
|
<dd class="tag-source"><ul class="dummy"><li>
|
|
88
|
-
<a href="PluginManager.js.html">PluginManager.js</a>, <a href="PluginManager.js.html#
|
|
88
|
+
<a href="PluginManager.js.html">PluginManager.js</a>, <a href="PluginManager.js.html#line220">line 220</a>
|
|
89
89
|
</li></ul></dd>
|
|
90
90
|
|
|
91
91
|
|
|
@@ -191,7 +191,7 @@ and then maintains references to them</div>
|
|
|
191
191
|
|
|
192
192
|
<dt class="tag-source">Source:</dt>
|
|
193
193
|
<dd class="tag-source"><ul class="dummy"><li>
|
|
194
|
-
<a href="PluginManager.js.html">PluginManager.js</a>, <a href="PluginManager.js.html#
|
|
194
|
+
<a href="PluginManager.js.html">PluginManager.js</a>, <a href="PluginManager.js.html#line313">line 313</a>
|
|
195
195
|
</li></ul></dd>
|
|
196
196
|
|
|
197
197
|
|
|
@@ -328,7 +328,7 @@ loaded from the plugins.</li></ul></dd>
|
|
|
328
328
|
|
|
329
329
|
<dt class="tag-source">Source:</dt>
|
|
330
330
|
<dd class="tag-source"><ul class="dummy"><li>
|
|
331
|
-
<a href="PluginManager.js.html">PluginManager.js</a>, <a href="PluginManager.js.html#
|
|
331
|
+
<a href="PluginManager.js.html">PluginManager.js</a>, <a href="PluginManager.js.html#line282">line 282</a>
|
|
332
332
|
</li></ul></dd>
|
|
333
333
|
|
|
334
334
|
|
|
@@ -439,7 +439,7 @@ loaded from the plugins.</li></ul></dd>
|
|
|
439
439
|
|
|
440
440
|
<dt class="tag-source">Source:</dt>
|
|
441
441
|
<dd class="tag-source"><ul class="dummy"><li>
|
|
442
|
-
<a href="PluginManager.js.html">PluginManager.js</a>, <a href="PluginManager.js.html#
|
|
442
|
+
<a href="PluginManager.js.html">PluginManager.js</a>, <a href="PluginManager.js.html#line270">line 270</a>
|
|
443
443
|
</li></ul></dd>
|
|
444
444
|
|
|
445
445
|
|
|
@@ -550,7 +550,7 @@ loaded from the plugins.</li></ul></dd>
|
|
|
550
550
|
|
|
551
551
|
<dt class="tag-source">Source:</dt>
|
|
552
552
|
<dd class="tag-source"><ul class="dummy"><li>
|
|
553
|
-
<a href="PluginManager.js.html">PluginManager.js</a>, <a href="PluginManager.js.html#
|
|
553
|
+
<a href="PluginManager.js.html">PluginManager.js</a>, <a href="PluginManager.js.html#line294">line 294</a>
|
|
554
554
|
</li></ul></dd>
|
|
555
555
|
|
|
556
556
|
|
|
@@ -660,7 +660,7 @@ built-in rules and the rules loaded from the plugins.</li></ul></dd>
|
|
|
660
660
|
|
|
661
661
|
<dt class="tag-source">Source:</dt>
|
|
662
662
|
<dd class="tag-source"><ul class="dummy"><li>
|
|
663
|
-
<a href="PluginManager.js.html">PluginManager.js</a>, <a href="PluginManager.js.html#
|
|
663
|
+
<a href="PluginManager.js.html">PluginManager.js</a>, <a href="PluginManager.js.html#line304">line 304</a>
|
|
664
664
|
</li></ul></dd>
|
|
665
665
|
|
|
666
666
|
|
|
@@ -770,7 +770,7 @@ each named plugin is loaded. This method returns Promise</li></ul></dd>
|
|
|
770
770
|
|
|
771
771
|
<dt class="tag-source">Source:</dt>
|
|
772
772
|
<dd class="tag-source"><ul class="dummy"><li>
|
|
773
|
-
<a href="PluginManager.js.html">PluginManager.js</a>, <a href="PluginManager.js.html#
|
|
773
|
+
<a href="PluginManager.js.html">PluginManager.js</a>, <a href="PluginManager.js.html#line334">line 334</a>
|
|
774
774
|
</li></ul></dd>
|
|
775
775
|
|
|
776
776
|
|
|
@@ -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.0</a> on
|
|
933
|
+
Documentation generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc 4.0.0</a> on Fri Apr 28 2023 06:52:47 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>
|
|
@@ -81,6 +81,7 @@ import ResourceEdgeWhitespace from './rules/ResourceEdgeWhitespace.js';
|
|
|
81
81
|
import ResourceCompleteness from './rules/ResourceCompleteness.js';
|
|
82
82
|
import ResourceDNTTerms from './rules/ResourceDNTTerms.js';
|
|
83
83
|
import ResourceNoTranslation from './rules/ResourceNoTranslation.js';
|
|
84
|
+
import ResourceStateChecker from './rules/ResourceStateChecker.js';
|
|
84
85
|
|
|
85
86
|
const logger = log4js.getLogger("i18nlint.PluginManager");
|
|
86
87
|
|
|
@@ -281,7 +282,8 @@ class PluginManager {
|
|
|
281
282
|
ResourceEdgeWhitespace,
|
|
282
283
|
ResourceCompleteness,
|
|
283
284
|
ResourceDNTTerms,
|
|
284
|
-
ResourceNoTranslation
|
|
285
|
+
ResourceNoTranslation,
|
|
286
|
+
ResourceStateChecker
|
|
285
287
|
]);
|
|
286
288
|
this.ruleMgr.add(regexRules);
|
|
287
289
|
|
|
@@ -404,7 +406,7 @@ export default PluginManager;
|
|
|
404
406
|
<br class="clear">
|
|
405
407
|
|
|
406
408
|
<footer>
|
|
407
|
-
Documentation generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc 4.0.0</a> on
|
|
409
|
+
Documentation generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc 4.0.0</a> on Fri Apr 28 2023 06:52:47 GMT-0700 (Pacific Daylight Time) using the <a href="https://github.com/clenemt/docdash">docdash</a> theme.
|
|
408
410
|
</footer>
|
|
409
411
|
|
|
410
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.0</a> on
|
|
2059
|
+
Documentation generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc 4.0.0</a> on Fri Apr 28 2023 06:52:47 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.0</a> on
|
|
390
|
+
Documentation generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc 4.0.0</a> on Fri Apr 28 2023 06:52:47 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.0</a> on
|
|
716
|
+
Documentation generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc 4.0.0</a> on Fri Apr 28 2023 06:52:47 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.0</a> on
|
|
1036
|
+
Documentation generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc 4.0.0</a> on Fri Apr 28 2023 06:52:47 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.0</a> on
|
|
713
|
+
Documentation generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc 4.0.0</a> on Fri Apr 28 2023 06:52:47 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.0</a> on
|
|
274
|
+
Documentation generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc 4.0.0</a> on Fri Apr 28 2023 06:52:47 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.0</a> on
|
|
274
|
+
Documentation generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc 4.0.0</a> on Fri Apr 28 2023 06:52:47 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.0</a> on
|
|
788
|
+
Documentation generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc 4.0.0</a> on Fri Apr 28 2023 06:52:47 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.0</a> on
|
|
324
|
+
Documentation generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc 4.0.0</a> on Fri Apr 28 2023 06:52:47 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>
|
|
@@ -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.0</a> on
|
|
274
|
+
Documentation generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc 4.0.0</a> on Fri Apr 28 2023 06:52:47 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.0</a> on
|
|
337
|
+
Documentation generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc 4.0.0</a> on Fri Apr 28 2023 06:52:47 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.0</a> on
|
|
338
|
+
Documentation generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc 4.0.0</a> on Fri Apr 28 2023 06:52:47 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.0</a> on
|
|
337
|
+
Documentation generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc 4.0.0</a> on Fri Apr 28 2023 06:52:47 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.0</a> on
|
|
324
|
+
Documentation generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc 4.0.0</a> on Fri Apr 28 2023 06:52:47 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.0</a> on
|
|
1582
|
+
Documentation generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc 4.0.0</a> on Fri Apr 28 2023 06:52:47 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.0</a> on
|
|
342
|
+
Documentation generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc 4.0.0</a> on Fri Apr 28 2023 06:52:47 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.0</a> on
|
|
946
|
+
Documentation generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc 4.0.0</a> on Fri Apr 28 2023 06:52:47 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.0</a> on
|
|
160
|
+
Documentation generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc 4.0.0</a> on Fri Apr 28 2023 06:52:47 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.0</a> on
|
|
722
|
+
Documentation generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc 4.0.0</a> on Fri Apr 28 2023 06:52:47 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.0</a> on
|
|
214
|
+
Documentation generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc 4.0.0</a> on Fri Apr 28 2023 06:52:47 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.0</a> on
|
|
386
|
+
Documentation generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc 4.0.0</a> on Fri Apr 28 2023 06:52:47 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.0</a> on
|
|
302
|
+
Documentation generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc 4.0.0</a> on Fri Apr 28 2023 06:52:47 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.0</a> on
|
|
134
|
+
Documentation generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc 4.0.0</a> on Fri Apr 28 2023 06:52:47 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.0</a> on
|
|
156
|
+
Documentation generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc 4.0.0</a> on Fri Apr 28 2023 06:52:47 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
|
@@ -292,7 +292,7 @@ the regular i18nlint stream.</li></ul></dd>
|
|
|
292
292
|
|
|
293
293
|
<dt class="tag-source">Source:</dt>
|
|
294
294
|
<dd class="tag-source"><ul class="dummy"><li>
|
|
295
|
-
<a href="PluginManager.js.html">PluginManager.js</a>, <a href="PluginManager.js.html#
|
|
295
|
+
<a href="PluginManager.js.html">PluginManager.js</a>, <a href="PluginManager.js.html#line210">line 210</a>
|
|
296
296
|
</li></ul></dd>
|
|
297
297
|
|
|
298
298
|
|
|
@@ -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.0</a> on
|
|
954
|
+
Documentation generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc 4.0.0</a> on Fri Apr 28 2023 06:52:47 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.0</a> on
|
|
74
|
+
Documentation generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc 4.0.0</a> on Fri Apr 28 2023 06:52:47 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.0</a> on
|
|
129
|
+
Documentation generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc 4.0.0</a> on Fri Apr 28 2023 06:52:47 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.0</a> on
|
|
109
|
+
Documentation generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc 4.0.0</a> on Fri Apr 28 2023 06:52:47 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.0</a> on
|
|
149
|
+
Documentation generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc 4.0.0</a> on Fri Apr 28 2023 06:52:47 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.0</a> on
|
|
302
|
+
Documentation generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc 4.0.0</a> on Fri Apr 28 2023 06:52:47 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.0</a> on
|
|
202
|
+
Documentation generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc 4.0.0</a> on Fri Apr 28 2023 06:52:47 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>
|
|
@@ -316,7 +316,7 @@ export default ResourceICUPluralTranslation;</code></pre>
|
|
|
316
316
|
<br class="clear">
|
|
317
317
|
|
|
318
318
|
<footer>
|
|
319
|
-
Documentation generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc 4.0.0</a> on
|
|
319
|
+
Documentation generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc 4.0.0</a> on Fri Apr 28 2023 06:52:47 GMT-0700 (Pacific Daylight Time) using the <a href="https://github.com/clenemt/docdash">docdash</a> theme.
|
|
320
320
|
</footer>
|
|
321
321
|
|
|
322
322
|
<script>prettyPrint();</script>
|
|
@@ -275,7 +275,7 @@ export default ResourceICUPlurals;</code></pre>
|
|
|
275
275
|
<br class="clear">
|
|
276
276
|
|
|
277
277
|
<footer>
|
|
278
|
-
Documentation generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc 4.0.0</a> on
|
|
278
|
+
Documentation generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc 4.0.0</a> on Fri Apr 28 2023 06:52:47 GMT-0700 (Pacific Daylight Time) using the <a href="https://github.com/clenemt/docdash">docdash</a> theme.
|
|
279
279
|
</footer>
|
|
280
280
|
|
|
281
281
|
<script>prettyPrint();</script>
|
|
@@ -234,7 +234,7 @@ export default ResourceMatcher;
|
|
|
234
234
|
<br class="clear">
|
|
235
235
|
|
|
236
236
|
<footer>
|
|
237
|
-
Documentation generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc 4.0.0</a> on
|
|
237
|
+
Documentation generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc 4.0.0</a> on Fri Apr 28 2023 06:52:47 GMT-0700 (Pacific Daylight Time) using the <a href="https://github.com/clenemt/docdash">docdash</a> theme.
|
|
238
238
|
</footer>
|
|
239
239
|
|
|
240
240
|
<script>prettyPrint();</script>
|
|
@@ -151,7 +151,7 @@ export default ResourceNoTranslation;
|
|
|
151
151
|
<br class="clear">
|
|
152
152
|
|
|
153
153
|
<footer>
|
|
154
|
-
Documentation generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc 4.0.0</a> on
|
|
154
|
+
Documentation generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc 4.0.0</a> on Fri Apr 28 2023 06:52:47 GMT-0700 (Pacific Daylight Time) using the <a href="https://github.com/clenemt/docdash">docdash</a> theme.
|
|
155
155
|
</footer>
|
|
156
156
|
|
|
157
157
|
<script>prettyPrint();</script>
|
|
@@ -237,7 +237,7 @@ export default ResourceQuoteStyle;</code></pre>
|
|
|
237
237
|
<br class="clear">
|
|
238
238
|
|
|
239
239
|
<footer>
|
|
240
|
-
Documentation generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc 4.0.0</a> on
|
|
240
|
+
Documentation generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc 4.0.0</a> on Fri Apr 28 2023 06:52:47 GMT-0700 (Pacific Daylight Time) using the <a href="https://github.com/clenemt/docdash">docdash</a> theme.
|
|
241
241
|
</footer>
|
|
242
242
|
|
|
243
243
|
<script>prettyPrint();</script>
|
|
@@ -202,7 +202,7 @@ export default ResourceSourceChecker;
|
|
|
202
202
|
<br class="clear">
|
|
203
203
|
|
|
204
204
|
<footer>
|
|
205
|
-
Documentation generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc 4.0.0</a> on
|
|
205
|
+
Documentation generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc 4.0.0</a> on Fri Apr 28 2023 06:52:47 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>
|
|
@@ -162,7 +162,7 @@ export default ResourceStateChecker;
|
|
|
162
162
|
<br class="clear">
|
|
163
163
|
|
|
164
164
|
<footer>
|
|
165
|
-
Documentation generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc 4.0.0</a> on
|
|
165
|
+
Documentation generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc 4.0.0</a> on Fri Apr 28 2023 06:52:47 GMT-0700 (Pacific Daylight Time) using the <a href="https://github.com/clenemt/docdash">docdash</a> theme.
|
|
166
166
|
</footer>
|
|
167
167
|
|
|
168
168
|
<script>prettyPrint();</script>
|
|
@@ -212,7 +212,7 @@ export default ResourceTargetChecker;
|
|
|
212
212
|
<br class="clear">
|
|
213
213
|
|
|
214
214
|
<footer>
|
|
215
|
-
Documentation generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc 4.0.0</a> on
|
|
215
|
+
Documentation generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc 4.0.0</a> on Fri Apr 28 2023 06:52:47 GMT-0700 (Pacific Daylight Time) using the <a href="https://github.com/clenemt/docdash">docdash</a> theme.
|
|
216
216
|
</footer>
|
|
217
217
|
|
|
218
218
|
<script>prettyPrint();</script>
|
|
@@ -138,7 +138,7 @@ export default ResourceUniqueKeys;</code></pre>
|
|
|
138
138
|
<br class="clear">
|
|
139
139
|
|
|
140
140
|
<footer>
|
|
141
|
-
Documentation generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc 4.0.0</a> on
|
|
141
|
+
Documentation generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc 4.0.0</a> on Fri Apr 28 2023 06:52:47 GMT-0700 (Pacific Daylight Time) using the <a href="https://github.com/clenemt/docdash">docdash</a> theme.
|
|
142
142
|
</footer>
|
|
143
143
|
|
|
144
144
|
<script>prettyPrint();</script>
|
|
@@ -239,7 +239,7 @@ export default ResourceMatcher;
|
|
|
239
239
|
<br class="clear">
|
|
240
240
|
|
|
241
241
|
<footer>
|
|
242
|
-
Documentation generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc 4.0.0</a> on
|
|
242
|
+
Documentation generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc 4.0.0</a> on Fri Apr 28 2023 06:52:47 GMT-0700 (Pacific Daylight Time) using the <a href="https://github.com/clenemt/docdash">docdash</a> theme.
|
|
243
243
|
</footer>
|
|
244
244
|
|
|
245
245
|
<script>prettyPrint();</script>
|
package/docs/rules_utils.js.html
CHANGED
|
@@ -145,7 +145,7 @@ export function indent(arr, length) {
|
|
|
145
145
|
<br class="clear">
|
|
146
146
|
|
|
147
147
|
<footer>
|
|
148
|
-
Documentation generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc 4.0.0</a> on
|
|
148
|
+
Documentation generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc 4.0.0</a> on Fri Apr 28 2023 06:52:47 GMT-0700 (Pacific Daylight Time) using the <a href="https://github.com/clenemt/docdash">docdash</a> theme.
|
|
149
149
|
</footer>
|
|
150
150
|
|
|
151
151
|
<script>prettyPrint();</script>
|
package/docs/walk.js.html
CHANGED
|
@@ -213,7 +213,7 @@ export default walk;</code></pre>
|
|
|
213
213
|
<br class="clear">
|
|
214
214
|
|
|
215
215
|
<footer>
|
|
216
|
-
Documentation generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc 4.0.0</a> on
|
|
216
|
+
Documentation generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc 4.0.0</a> on Fri Apr 28 2023 06:52:47 GMT-0700 (Pacific Daylight Time) using the <a href="https://github.com/clenemt/docdash">docdash</a> theme.
|
|
217
217
|
</footer>
|
|
218
218
|
|
|
219
219
|
<script>prettyPrint();</script>
|
package/package.json
CHANGED
package/src/PluginManager.js
CHANGED
|
@@ -34,6 +34,7 @@ import ResourceEdgeWhitespace from './rules/ResourceEdgeWhitespace.js';
|
|
|
34
34
|
import ResourceCompleteness from './rules/ResourceCompleteness.js';
|
|
35
35
|
import ResourceDNTTerms from './rules/ResourceDNTTerms.js';
|
|
36
36
|
import ResourceNoTranslation from './rules/ResourceNoTranslation.js';
|
|
37
|
+
import ResourceStateChecker from './rules/ResourceStateChecker.js';
|
|
37
38
|
|
|
38
39
|
const logger = log4js.getLogger("i18nlint.PluginManager");
|
|
39
40
|
|
|
@@ -234,7 +235,8 @@ class PluginManager {
|
|
|
234
235
|
ResourceEdgeWhitespace,
|
|
235
236
|
ResourceCompleteness,
|
|
236
237
|
ResourceDNTTerms,
|
|
237
|
-
ResourceNoTranslation
|
|
238
|
+
ResourceNoTranslation,
|
|
239
|
+
ResourceStateChecker
|
|
238
240
|
]);
|
|
239
241
|
this.ruleMgr.add(regexRules);
|
|
240
242
|
|