eslint-plugin-use-agnostic 1.7.5 → 1.7.9
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/comments.config.json +20 -0
- package/comments.config.mjs +21 -1
- package/jscomments/jsdoc/alias-variables.js +6 -0
- package/jscomments/jsdoc/comments.js +18 -7
- package/library/agnostic20/_commons/rules/import-rules.js +3 -1
- package/library/agnostic20/_commons/utilities/flows.js +103 -0
- package/library/directive21/_commons/rules/import-rules.js +3 -0
- package/library/directive21/_commons/utilities/flows.js +270 -13
- package/library/directive21/_commons/utilities/helpers.js +64 -1
- package/package.json +1 -1
package/comments.config.json
CHANGED
|
@@ -86,6 +86,10 @@
|
|
|
86
86
|
"value": "The flow that is shared between import and re-export traversals to obtain the import file's effective directive.",
|
|
87
87
|
"key": "JSDOC#DEFINITIONS#AGNOSTIC20#IMPORTEDFILEFLOW"
|
|
88
88
|
},
|
|
89
|
+
"importedFileFlowRequire": {
|
|
90
|
+
"value": "The `importedFileFlow` adapted for `require` calls to obtain the import file's effective directive.",
|
|
91
|
+
"key": "JSDOC#DEFINITIONS#AGNOSTIC20#IMPORTEDFILEFLOWREQUIRE"
|
|
92
|
+
},
|
|
89
93
|
"importsFlow": {
|
|
90
94
|
"value": "The full flow for import traversals to enforce effective directives import rules.",
|
|
91
95
|
"key": "JSDOC#DEFINITIONS#AGNOSTIC20#IMPORTSFLOW"
|
|
@@ -172,6 +176,10 @@
|
|
|
172
176
|
"value": "The flow that is shared between import and re-export traversals to obtain the import file's commented directive.",
|
|
173
177
|
"key": "JSDOC#DEFINITIONS#DIRECTIVE21#IMPORTEDFILEFLOW"
|
|
174
178
|
},
|
|
179
|
+
"importedFileFlowRequire": {
|
|
180
|
+
"value": "The `importedFileFlow` adapted for `require` calls to obtain the import file's commented directive.",
|
|
181
|
+
"key": "JSDOC#DEFINITIONS#DIRECTIVE21#IMPORTEDFILEFLOWREQUIRE"
|
|
182
|
+
},
|
|
175
183
|
"importsFlow": {
|
|
176
184
|
"value": "The full flow for import traversals to enforce effective directives import rules.",
|
|
177
185
|
"key": "JSDOC#DEFINITIONS#DIRECTIVE21#IMPORTSFLOW"
|
|
@@ -667,6 +675,18 @@
|
|
|
667
675
|
"value": "The full flow for import traversals to enforce effective directives import rules.",
|
|
668
676
|
"key": "JSDOC#FORALIASVARIABLES#IMPORTSFLOW"
|
|
669
677
|
},
|
|
678
|
+
"importsFlowRequire": {
|
|
679
|
+
"value": "The `importsFlow` adapted for `require` calls to enforce effective directives import rules.",
|
|
680
|
+
"key": "JSDOC#FORALIASVARIABLES#IMPORTSFLOWREQUIRE"
|
|
681
|
+
},
|
|
682
|
+
"importsFlowCommented": {
|
|
683
|
+
"value": "The full flow for import traversals to enforce commented directives import rules.",
|
|
684
|
+
"key": "JSDOC#FORALIASVARIABLES#IMPORTSFLOWCOMMENTED"
|
|
685
|
+
},
|
|
686
|
+
"importsFlowCommentedRequire": {
|
|
687
|
+
"value": "The `importsFlow` adapted for `require` calls to enforce commented directives import rules.",
|
|
688
|
+
"key": "JSDOC#FORALIASVARIABLES#IMPORTSFLOWCOMMENTEDREQUIRE"
|
|
689
|
+
},
|
|
670
690
|
"flowReturnsEarly": {
|
|
671
691
|
"value": "Early if the flow needs to be interrupted.",
|
|
672
692
|
"key": "JSDOC#FORALIASVARIABLES#FLOWRETURNSEARLY"
|