@alexlit/lint-kit 173.3.0 → 175.0.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (670) hide show
  1. package/package.json +1 -1
  2. package/packages/config-eslint/node_modules/@eslint/config-array/LICENSE +201 -0
  3. package/packages/config-eslint/node_modules/@eslint/config-array/README.md +368 -0
  4. package/packages/config-eslint/node_modules/@eslint/config-array/dist/cjs/index.cjs +1536 -0
  5. package/packages/config-eslint/node_modules/@eslint/config-array/dist/cjs/index.d.cts +144 -0
  6. package/packages/config-eslint/node_modules/@eslint/config-array/dist/cjs/std__path/posix.cjs +1336 -0
  7. package/packages/config-eslint/node_modules/@eslint/config-array/dist/cjs/std__path/windows.cjs +1678 -0
  8. package/packages/config-eslint/node_modules/@eslint/config-array/dist/cjs/types.cts +29 -0
  9. package/packages/config-eslint/node_modules/@eslint/config-array/dist/esm/index.d.ts +144 -0
  10. package/packages/config-eslint/node_modules/@eslint/config-array/dist/esm/index.js +1511 -0
  11. package/packages/config-eslint/node_modules/@eslint/config-array/dist/esm/std__path/posix.js +1314 -0
  12. package/packages/config-eslint/node_modules/@eslint/config-array/dist/esm/std__path/windows.js +1656 -0
  13. package/packages/config-eslint/node_modules/@eslint/config-array/dist/esm/types.d.ts +23 -0
  14. package/packages/config-eslint/node_modules/@eslint/config-array/dist/esm/types.ts +29 -0
  15. package/packages/config-eslint/node_modules/@eslint/config-array/package.json +65 -0
  16. package/packages/config-eslint/node_modules/@eslint/config-helpers/LICENSE +201 -0
  17. package/packages/config-eslint/node_modules/@eslint/config-helpers/README.md +97 -0
  18. package/packages/config-eslint/node_modules/@eslint/config-helpers/dist/cjs/index.cjs +588 -0
  19. package/packages/config-eslint/node_modules/@eslint/config-helpers/dist/cjs/index.d.cts +26 -0
  20. package/packages/config-eslint/node_modules/@eslint/config-helpers/dist/cjs/types.cts +29 -0
  21. package/packages/config-eslint/node_modules/@eslint/config-helpers/dist/esm/index.d.ts +26 -0
  22. package/packages/config-eslint/node_modules/@eslint/config-helpers/dist/esm/index.js +586 -0
  23. package/packages/config-eslint/node_modules/@eslint/config-helpers/dist/esm/types.d.ts +23 -0
  24. package/packages/config-eslint/node_modules/@eslint/config-helpers/dist/esm/types.ts +29 -0
  25. package/packages/config-eslint/node_modules/@eslint/config-helpers/package.json +60 -0
  26. package/packages/config-eslint/node_modules/@eslint/js/LICENSE +19 -0
  27. package/packages/config-eslint/node_modules/@eslint/js/README.md +103 -0
  28. package/packages/config-eslint/node_modules/@eslint/js/package.json +44 -0
  29. package/packages/config-eslint/node_modules/@eslint/js/src/configs/eslint-all.js +210 -0
  30. package/packages/config-eslint/node_modules/@eslint/js/src/configs/eslint-recommended.js +75 -0
  31. package/packages/config-eslint/node_modules/@eslint/js/src/index.js +23 -0
  32. package/packages/config-eslint/node_modules/@eslint/js/types/index.d.ts +14 -0
  33. package/packages/config-eslint/node_modules/@eslint/object-schema/LICENSE +201 -0
  34. package/packages/config-eslint/node_modules/@eslint/object-schema/README.md +243 -0
  35. package/packages/config-eslint/node_modules/@eslint/object-schema/dist/cjs/index.cjs +459 -0
  36. package/packages/config-eslint/node_modules/@eslint/object-schema/dist/cjs/index.d.cts +127 -0
  37. package/packages/config-eslint/node_modules/@eslint/object-schema/dist/cjs/types.cts +57 -0
  38. package/packages/config-eslint/node_modules/@eslint/object-schema/dist/esm/index.d.ts +127 -0
  39. package/packages/config-eslint/node_modules/@eslint/object-schema/dist/esm/index.js +456 -0
  40. package/packages/config-eslint/node_modules/@eslint/object-schema/dist/esm/types.d.ts +40 -0
  41. package/packages/config-eslint/node_modules/@eslint/object-schema/dist/esm/types.ts +57 -0
  42. package/packages/config-eslint/node_modules/@eslint/object-schema/package.json +62 -0
  43. package/packages/config-eslint/node_modules/@eslint/plugin-kit/LICENSE +201 -0
  44. package/packages/config-eslint/node_modules/@eslint/plugin-kit/README.md +273 -0
  45. package/packages/config-eslint/node_modules/@eslint/plugin-kit/dist/cjs/index.cjs +895 -0
  46. package/packages/config-eslint/node_modules/@eslint/plugin-kit/dist/cjs/index.d.cts +329 -0
  47. package/packages/config-eslint/node_modules/@eslint/plugin-kit/dist/cjs/types.cts +81 -0
  48. package/packages/config-eslint/node_modules/@eslint/plugin-kit/dist/esm/index.d.ts +329 -0
  49. package/packages/config-eslint/node_modules/@eslint/plugin-kit/dist/esm/index.js +890 -0
  50. package/packages/config-eslint/node_modules/@eslint/plugin-kit/dist/esm/types.d.ts +46 -0
  51. package/packages/config-eslint/node_modules/@eslint/plugin-kit/dist/esm/types.ts +81 -0
  52. package/packages/config-eslint/node_modules/@eslint/plugin-kit/package.json +62 -0
  53. package/packages/config-eslint/node_modules/ajv/.tonic_example.js +20 -0
  54. package/packages/config-eslint/node_modules/ajv/LICENSE +22 -0
  55. package/packages/config-eslint/node_modules/ajv/README.md +1497 -0
  56. package/packages/config-eslint/node_modules/ajv/dist/ajv.bundle.js +7189 -0
  57. package/packages/config-eslint/node_modules/ajv/dist/ajv.min.js +3 -0
  58. package/packages/config-eslint/node_modules/ajv/dist/ajv.min.js.map +1 -0
  59. package/packages/config-eslint/node_modules/ajv/lib/ajv.d.ts +397 -0
  60. package/packages/config-eslint/node_modules/ajv/lib/ajv.js +506 -0
  61. package/packages/config-eslint/node_modules/ajv/lib/cache.js +26 -0
  62. package/packages/config-eslint/node_modules/ajv/lib/compile/async.js +90 -0
  63. package/packages/config-eslint/node_modules/ajv/lib/compile/equal.js +5 -0
  64. package/packages/config-eslint/node_modules/ajv/lib/compile/error_classes.js +34 -0
  65. package/packages/config-eslint/node_modules/ajv/lib/compile/formats.js +142 -0
  66. package/packages/config-eslint/node_modules/ajv/lib/compile/index.js +387 -0
  67. package/packages/config-eslint/node_modules/ajv/lib/compile/resolve.js +270 -0
  68. package/packages/config-eslint/node_modules/ajv/lib/compile/rules.js +66 -0
  69. package/packages/config-eslint/node_modules/ajv/lib/compile/schema_obj.js +9 -0
  70. package/packages/config-eslint/node_modules/ajv/lib/compile/ucs2length.js +20 -0
  71. package/packages/config-eslint/node_modules/ajv/lib/compile/util.js +239 -0
  72. package/packages/config-eslint/node_modules/ajv/lib/data.js +49 -0
  73. package/packages/config-eslint/node_modules/ajv/lib/definition_schema.js +37 -0
  74. package/packages/config-eslint/node_modules/ajv/lib/dot/_limit.jst +113 -0
  75. package/packages/config-eslint/node_modules/ajv/lib/dot/_limitItems.jst +12 -0
  76. package/packages/config-eslint/node_modules/ajv/lib/dot/_limitLength.jst +12 -0
  77. package/packages/config-eslint/node_modules/ajv/lib/dot/_limitProperties.jst +12 -0
  78. package/packages/config-eslint/node_modules/ajv/lib/dot/allOf.jst +32 -0
  79. package/packages/config-eslint/node_modules/ajv/lib/dot/anyOf.jst +46 -0
  80. package/packages/config-eslint/node_modules/ajv/lib/dot/coerce.def +51 -0
  81. package/packages/config-eslint/node_modules/ajv/lib/dot/comment.jst +9 -0
  82. package/packages/config-eslint/node_modules/ajv/lib/dot/const.jst +11 -0
  83. package/packages/config-eslint/node_modules/ajv/lib/dot/contains.jst +55 -0
  84. package/packages/config-eslint/node_modules/ajv/lib/dot/custom.jst +191 -0
  85. package/packages/config-eslint/node_modules/ajv/lib/dot/defaults.def +47 -0
  86. package/packages/config-eslint/node_modules/ajv/lib/dot/definitions.def +203 -0
  87. package/packages/config-eslint/node_modules/ajv/lib/dot/dependencies.jst +79 -0
  88. package/packages/config-eslint/node_modules/ajv/lib/dot/enum.jst +30 -0
  89. package/packages/config-eslint/node_modules/ajv/lib/dot/errors.def +194 -0
  90. package/packages/config-eslint/node_modules/ajv/lib/dot/format.jst +106 -0
  91. package/packages/config-eslint/node_modules/ajv/lib/dot/if.jst +73 -0
  92. package/packages/config-eslint/node_modules/ajv/lib/dot/items.jst +98 -0
  93. package/packages/config-eslint/node_modules/ajv/lib/dot/missing.def +39 -0
  94. package/packages/config-eslint/node_modules/ajv/lib/dot/multipleOf.jst +22 -0
  95. package/packages/config-eslint/node_modules/ajv/lib/dot/not.jst +43 -0
  96. package/packages/config-eslint/node_modules/ajv/lib/dot/oneOf.jst +54 -0
  97. package/packages/config-eslint/node_modules/ajv/lib/dot/pattern.jst +14 -0
  98. package/packages/config-eslint/node_modules/ajv/lib/dot/properties.jst +245 -0
  99. package/packages/config-eslint/node_modules/ajv/lib/dot/propertyNames.jst +52 -0
  100. package/packages/config-eslint/node_modules/ajv/lib/dot/ref.jst +85 -0
  101. package/packages/config-eslint/node_modules/ajv/lib/dot/required.jst +108 -0
  102. package/packages/config-eslint/node_modules/ajv/lib/dot/uniqueItems.jst +62 -0
  103. package/packages/config-eslint/node_modules/ajv/lib/dot/validate.jst +276 -0
  104. package/packages/config-eslint/node_modules/ajv/lib/dotjs/README.md +3 -0
  105. package/packages/config-eslint/node_modules/ajv/lib/dotjs/_limit.js +163 -0
  106. package/packages/config-eslint/node_modules/ajv/lib/dotjs/_limitItems.js +80 -0
  107. package/packages/config-eslint/node_modules/ajv/lib/dotjs/_limitLength.js +85 -0
  108. package/packages/config-eslint/node_modules/ajv/lib/dotjs/_limitProperties.js +80 -0
  109. package/packages/config-eslint/node_modules/ajv/lib/dotjs/allOf.js +42 -0
  110. package/packages/config-eslint/node_modules/ajv/lib/dotjs/anyOf.js +73 -0
  111. package/packages/config-eslint/node_modules/ajv/lib/dotjs/comment.js +14 -0
  112. package/packages/config-eslint/node_modules/ajv/lib/dotjs/const.js +56 -0
  113. package/packages/config-eslint/node_modules/ajv/lib/dotjs/contains.js +81 -0
  114. package/packages/config-eslint/node_modules/ajv/lib/dotjs/custom.js +228 -0
  115. package/packages/config-eslint/node_modules/ajv/lib/dotjs/dependencies.js +168 -0
  116. package/packages/config-eslint/node_modules/ajv/lib/dotjs/enum.js +66 -0
  117. package/packages/config-eslint/node_modules/ajv/lib/dotjs/format.js +150 -0
  118. package/packages/config-eslint/node_modules/ajv/lib/dotjs/if.js +103 -0
  119. package/packages/config-eslint/node_modules/ajv/lib/dotjs/index.js +33 -0
  120. package/packages/config-eslint/node_modules/ajv/lib/dotjs/items.js +140 -0
  121. package/packages/config-eslint/node_modules/ajv/lib/dotjs/multipleOf.js +80 -0
  122. package/packages/config-eslint/node_modules/ajv/lib/dotjs/not.js +84 -0
  123. package/packages/config-eslint/node_modules/ajv/lib/dotjs/oneOf.js +73 -0
  124. package/packages/config-eslint/node_modules/ajv/lib/dotjs/pattern.js +75 -0
  125. package/packages/config-eslint/node_modules/ajv/lib/dotjs/properties.js +335 -0
  126. package/packages/config-eslint/node_modules/ajv/lib/dotjs/propertyNames.js +81 -0
  127. package/packages/config-eslint/node_modules/ajv/lib/dotjs/ref.js +124 -0
  128. package/packages/config-eslint/node_modules/ajv/lib/dotjs/required.js +270 -0
  129. package/packages/config-eslint/node_modules/ajv/lib/dotjs/uniqueItems.js +86 -0
  130. package/packages/config-eslint/node_modules/ajv/lib/dotjs/validate.js +482 -0
  131. package/packages/config-eslint/node_modules/ajv/lib/keyword.js +146 -0
  132. package/packages/config-eslint/node_modules/ajv/lib/refs/data.json +17 -0
  133. package/packages/config-eslint/node_modules/ajv/lib/refs/json-schema-draft-04.json +149 -0
  134. package/packages/config-eslint/node_modules/ajv/lib/refs/json-schema-draft-06.json +154 -0
  135. package/packages/config-eslint/node_modules/ajv/lib/refs/json-schema-draft-07.json +168 -0
  136. package/packages/config-eslint/node_modules/ajv/lib/refs/json-schema-secure.json +94 -0
  137. package/packages/config-eslint/node_modules/ajv/package.json +106 -0
  138. package/packages/config-eslint/node_modules/ajv/scripts/.eslintrc.yml +3 -0
  139. package/packages/config-eslint/node_modules/ajv/scripts/bundle.js +61 -0
  140. package/packages/config-eslint/node_modules/ajv/scripts/compile-dots.js +73 -0
  141. package/packages/config-eslint/node_modules/ajv/scripts/info +10 -0
  142. package/packages/config-eslint/node_modules/ajv/scripts/prepare-tests +12 -0
  143. package/packages/config-eslint/node_modules/ajv/scripts/publish-built-version +32 -0
  144. package/packages/config-eslint/node_modules/ajv/scripts/travis-gh-pages +23 -0
  145. package/packages/config-eslint/node_modules/eslint/LICENSE +19 -0
  146. package/packages/config-eslint/node_modules/eslint/README.md +363 -0
  147. package/packages/config-eslint/node_modules/eslint/bin/eslint.js +195 -0
  148. package/packages/config-eslint/node_modules/eslint/conf/ecma-version.js +16 -0
  149. package/packages/config-eslint/node_modules/eslint/conf/globals.js +169 -0
  150. package/packages/config-eslint/node_modules/eslint/conf/replacements.json +26 -0
  151. package/packages/config-eslint/node_modules/eslint/conf/rule-type-list.json +91 -0
  152. package/packages/config-eslint/node_modules/eslint/lib/api.js +39 -0
  153. package/packages/config-eslint/node_modules/eslint/lib/cli-engine/formatters/formatters-meta.json +18 -0
  154. package/packages/config-eslint/node_modules/eslint/lib/cli-engine/formatters/html.js +359 -0
  155. package/packages/config-eslint/node_modules/eslint/lib/cli-engine/formatters/json-with-metadata.js +16 -0
  156. package/packages/config-eslint/node_modules/eslint/lib/cli-engine/formatters/json.js +13 -0
  157. package/packages/config-eslint/node_modules/eslint/lib/cli-engine/formatters/stylish.js +153 -0
  158. package/packages/config-eslint/node_modules/eslint/lib/cli-engine/hash.js +35 -0
  159. package/packages/config-eslint/node_modules/eslint/lib/cli-engine/lint-result-cache.js +220 -0
  160. package/packages/config-eslint/node_modules/eslint/lib/cli.js +521 -0
  161. package/packages/config-eslint/node_modules/eslint/lib/config/config-loader.js +668 -0
  162. package/packages/config-eslint/node_modules/eslint/lib/config/config.js +674 -0
  163. package/packages/config-eslint/node_modules/eslint/lib/config/default-config.js +78 -0
  164. package/packages/config-eslint/node_modules/eslint/lib/config/flat-config-array.js +217 -0
  165. package/packages/config-eslint/node_modules/eslint/lib/config/flat-config-schema.js +598 -0
  166. package/packages/config-eslint/node_modules/eslint/lib/config-api.js +12 -0
  167. package/packages/config-eslint/node_modules/eslint/lib/eslint/eslint-helpers.js +1462 -0
  168. package/packages/config-eslint/node_modules/eslint/lib/eslint/eslint.js +1364 -0
  169. package/packages/config-eslint/node_modules/eslint/lib/eslint/index.js +7 -0
  170. package/packages/config-eslint/node_modules/eslint/lib/eslint/worker.js +173 -0
  171. package/packages/config-eslint/node_modules/eslint/lib/languages/js/index.js +336 -0
  172. package/packages/config-eslint/node_modules/eslint/lib/languages/js/source-code/index.js +7 -0
  173. package/packages/config-eslint/node_modules/eslint/lib/languages/js/source-code/source-code.js +1178 -0
  174. package/packages/config-eslint/node_modules/eslint/lib/languages/js/source-code/token-store/backward-token-comment-cursor.js +61 -0
  175. package/packages/config-eslint/node_modules/eslint/lib/languages/js/source-code/token-store/backward-token-cursor.js +57 -0
  176. package/packages/config-eslint/node_modules/eslint/lib/languages/js/source-code/token-store/cursor.js +76 -0
  177. package/packages/config-eslint/node_modules/eslint/lib/languages/js/source-code/token-store/cursors.js +120 -0
  178. package/packages/config-eslint/node_modules/eslint/lib/languages/js/source-code/token-store/decorative-cursor.js +38 -0
  179. package/packages/config-eslint/node_modules/eslint/lib/languages/js/source-code/token-store/filter-cursor.js +42 -0
  180. package/packages/config-eslint/node_modules/eslint/lib/languages/js/source-code/token-store/forward-token-comment-cursor.js +65 -0
  181. package/packages/config-eslint/node_modules/eslint/lib/languages/js/source-code/token-store/forward-token-cursor.js +62 -0
  182. package/packages/config-eslint/node_modules/eslint/lib/languages/js/source-code/token-store/index.js +695 -0
  183. package/packages/config-eslint/node_modules/eslint/lib/languages/js/source-code/token-store/limit-cursor.js +39 -0
  184. package/packages/config-eslint/node_modules/eslint/lib/languages/js/source-code/token-store/padded-token-cursor.js +45 -0
  185. package/packages/config-eslint/node_modules/eslint/lib/languages/js/source-code/token-store/skip-cursor.js +41 -0
  186. package/packages/config-eslint/node_modules/eslint/lib/languages/js/source-code/token-store/utils.js +131 -0
  187. package/packages/config-eslint/node_modules/eslint/lib/languages/js/validate-language-options.js +196 -0
  188. package/packages/config-eslint/node_modules/eslint/lib/linter/apply-disable-directives.js +583 -0
  189. package/packages/config-eslint/node_modules/eslint/lib/linter/code-path-analysis/code-path-analyzer.js +828 -0
  190. package/packages/config-eslint/node_modules/eslint/lib/linter/code-path-analysis/code-path-segment.js +262 -0
  191. package/packages/config-eslint/node_modules/eslint/lib/linter/code-path-analysis/code-path-state.js +2370 -0
  192. package/packages/config-eslint/node_modules/eslint/lib/linter/code-path-analysis/code-path.js +332 -0
  193. package/packages/config-eslint/node_modules/eslint/lib/linter/code-path-analysis/debug-helpers.js +223 -0
  194. package/packages/config-eslint/node_modules/eslint/lib/linter/code-path-analysis/fork-context.js +374 -0
  195. package/packages/config-eslint/node_modules/eslint/lib/linter/code-path-analysis/id-generator.js +44 -0
  196. package/packages/config-eslint/node_modules/eslint/lib/linter/esquery.js +332 -0
  197. package/packages/config-eslint/node_modules/eslint/lib/linter/file-context.js +88 -0
  198. package/packages/config-eslint/node_modules/eslint/lib/linter/file-report.js +604 -0
  199. package/packages/config-eslint/node_modules/eslint/lib/linter/index.js +11 -0
  200. package/packages/config-eslint/node_modules/eslint/lib/linter/interpolate.js +50 -0
  201. package/packages/config-eslint/node_modules/eslint/lib/linter/linter.js +1614 -0
  202. package/packages/config-eslint/node_modules/eslint/lib/linter/rule-fixer.js +199 -0
  203. package/packages/config-eslint/node_modules/eslint/lib/linter/source-code-fixer.js +154 -0
  204. package/packages/config-eslint/node_modules/eslint/lib/linter/source-code-traverser.js +333 -0
  205. package/packages/config-eslint/node_modules/eslint/lib/linter/source-code-visitor.js +81 -0
  206. package/packages/config-eslint/node_modules/eslint/lib/linter/timing.js +209 -0
  207. package/packages/config-eslint/node_modules/eslint/lib/linter/vfile.js +115 -0
  208. package/packages/config-eslint/node_modules/eslint/lib/options.js +416 -0
  209. package/packages/config-eslint/node_modules/eslint/lib/rule-tester/index.js +7 -0
  210. package/packages/config-eslint/node_modules/eslint/lib/rule-tester/rule-tester.js +1996 -0
  211. package/packages/config-eslint/node_modules/eslint/lib/rules/accessor-pairs.js +420 -0
  212. package/packages/config-eslint/node_modules/eslint/lib/rules/array-bracket-newline.js +291 -0
  213. package/packages/config-eslint/node_modules/eslint/lib/rules/array-bracket-spacing.js +301 -0
  214. package/packages/config-eslint/node_modules/eslint/lib/rules/array-callback-return.js +510 -0
  215. package/packages/config-eslint/node_modules/eslint/lib/rules/array-element-newline.js +374 -0
  216. package/packages/config-eslint/node_modules/eslint/lib/rules/arrow-body-style.js +418 -0
  217. package/packages/config-eslint/node_modules/eslint/lib/rules/arrow-parens.js +237 -0
  218. package/packages/config-eslint/node_modules/eslint/lib/rules/arrow-spacing.js +188 -0
  219. package/packages/config-eslint/node_modules/eslint/lib/rules/block-scoped-var.js +137 -0
  220. package/packages/config-eslint/node_modules/eslint/lib/rules/block-spacing.js +202 -0
  221. package/packages/config-eslint/node_modules/eslint/lib/rules/brace-style.js +278 -0
  222. package/packages/config-eslint/node_modules/eslint/lib/rules/callback-return.js +216 -0
  223. package/packages/config-eslint/node_modules/eslint/lib/rules/camelcase.js +422 -0
  224. package/packages/config-eslint/node_modules/eslint/lib/rules/capitalized-comments.js +325 -0
  225. package/packages/config-eslint/node_modules/eslint/lib/rules/class-methods-use-this.js +250 -0
  226. package/packages/config-eslint/node_modules/eslint/lib/rules/comma-dangle.js +424 -0
  227. package/packages/config-eslint/node_modules/eslint/lib/rules/comma-spacing.js +205 -0
  228. package/packages/config-eslint/node_modules/eslint/lib/rules/comma-style.js +391 -0
  229. package/packages/config-eslint/node_modules/eslint/lib/rules/complexity.js +201 -0
  230. package/packages/config-eslint/node_modules/eslint/lib/rules/computed-property-spacing.js +251 -0
  231. package/packages/config-eslint/node_modules/eslint/lib/rules/consistent-return.js +221 -0
  232. package/packages/config-eslint/node_modules/eslint/lib/rules/consistent-this.js +179 -0
  233. package/packages/config-eslint/node_modules/eslint/lib/rules/constructor-super.js +453 -0
  234. package/packages/config-eslint/node_modules/eslint/lib/rules/curly.js +425 -0
  235. package/packages/config-eslint/node_modules/eslint/lib/rules/default-case-last.js +51 -0
  236. package/packages/config-eslint/node_modules/eslint/lib/rules/default-case.js +103 -0
  237. package/packages/config-eslint/node_modules/eslint/lib/rules/default-param-last.js +78 -0
  238. package/packages/config-eslint/node_modules/eslint/lib/rules/dot-location.js +138 -0
  239. package/packages/config-eslint/node_modules/eslint/lib/rules/dot-notation.js +216 -0
  240. package/packages/config-eslint/node_modules/eslint/lib/rules/eol-last.js +135 -0
  241. package/packages/config-eslint/node_modules/eslint/lib/rules/eqeqeq.js +210 -0
  242. package/packages/config-eslint/node_modules/eslint/lib/rules/for-direction.js +168 -0
  243. package/packages/config-eslint/node_modules/eslint/lib/rules/func-call-spacing.js +281 -0
  244. package/packages/config-eslint/node_modules/eslint/lib/rules/func-name-matching.js +338 -0
  245. package/packages/config-eslint/node_modules/eslint/lib/rules/func-names.js +194 -0
  246. package/packages/config-eslint/node_modules/eslint/lib/rules/func-style.js +221 -0
  247. package/packages/config-eslint/node_modules/eslint/lib/rules/function-call-argument-newline.js +166 -0
  248. package/packages/config-eslint/node_modules/eslint/lib/rules/function-paren-newline.js +368 -0
  249. package/packages/config-eslint/node_modules/eslint/lib/rules/generator-star-spacing.js +246 -0
  250. package/packages/config-eslint/node_modules/eslint/lib/rules/getter-return.js +242 -0
  251. package/packages/config-eslint/node_modules/eslint/lib/rules/global-require.js +117 -0
  252. package/packages/config-eslint/node_modules/eslint/lib/rules/grouped-accessor-pairs.js +268 -0
  253. package/packages/config-eslint/node_modules/eslint/lib/rules/guard-for-in.js +85 -0
  254. package/packages/config-eslint/node_modules/eslint/lib/rules/handle-callback-err.js +122 -0
  255. package/packages/config-eslint/node_modules/eslint/lib/rules/id-blacklist.js +241 -0
  256. package/packages/config-eslint/node_modules/eslint/lib/rules/id-denylist.js +223 -0
  257. package/packages/config-eslint/node_modules/eslint/lib/rules/id-length.js +217 -0
  258. package/packages/config-eslint/node_modules/eslint/lib/rules/id-match.js +363 -0
  259. package/packages/config-eslint/node_modules/eslint/lib/rules/implicit-arrow-linebreak.js +125 -0
  260. package/packages/config-eslint/node_modules/eslint/lib/rules/indent-legacy.js +1369 -0
  261. package/packages/config-eslint/node_modules/eslint/lib/rules/indent.js +2334 -0
  262. package/packages/config-eslint/node_modules/eslint/lib/rules/index.js +332 -0
  263. package/packages/config-eslint/node_modules/eslint/lib/rules/init-declarations.js +172 -0
  264. package/packages/config-eslint/node_modules/eslint/lib/rules/jsx-quotes.js +128 -0
  265. package/packages/config-eslint/node_modules/eslint/lib/rules/key-spacing.js +822 -0
  266. package/packages/config-eslint/node_modules/eslint/lib/rules/keyword-spacing.js +701 -0
  267. package/packages/config-eslint/node_modules/eslint/lib/rules/line-comment-position.js +157 -0
  268. package/packages/config-eslint/node_modules/eslint/lib/rules/linebreak-style.js +135 -0
  269. package/packages/config-eslint/node_modules/eslint/lib/rules/lines-around-comment.js +581 -0
  270. package/packages/config-eslint/node_modules/eslint/lib/rules/lines-around-directive.js +249 -0
  271. package/packages/config-eslint/node_modules/eslint/lib/rules/lines-between-class-members.js +358 -0
  272. package/packages/config-eslint/node_modules/eslint/lib/rules/logical-assignment-operators.js +688 -0
  273. package/packages/config-eslint/node_modules/eslint/lib/rules/max-classes-per-file.js +90 -0
  274. package/packages/config-eslint/node_modules/eslint/lib/rules/max-depth.js +159 -0
  275. package/packages/config-eslint/node_modules/eslint/lib/rules/max-len.js +497 -0
  276. package/packages/config-eslint/node_modules/eslint/lib/rules/max-lines-per-function.js +238 -0
  277. package/packages/config-eslint/node_modules/eslint/lib/rules/max-lines.js +189 -0
  278. package/packages/config-eslint/node_modules/eslint/lib/rules/max-nested-callbacks.js +115 -0
  279. package/packages/config-eslint/node_modules/eslint/lib/rules/max-params.js +148 -0
  280. package/packages/config-eslint/node_modules/eslint/lib/rules/max-statements-per-line.js +224 -0
  281. package/packages/config-eslint/node_modules/eslint/lib/rules/max-statements.js +188 -0
  282. package/packages/config-eslint/node_modules/eslint/lib/rules/multiline-comment-style.js +652 -0
  283. package/packages/config-eslint/node_modules/eslint/lib/rules/multiline-ternary.js +257 -0
  284. package/packages/config-eslint/node_modules/eslint/lib/rules/new-cap.js +277 -0
  285. package/packages/config-eslint/node_modules/eslint/lib/rules/new-parens.js +120 -0
  286. package/packages/config-eslint/node_modules/eslint/lib/rules/newline-after-var.js +307 -0
  287. package/packages/config-eslint/node_modules/eslint/lib/rules/newline-before-return.js +242 -0
  288. package/packages/config-eslint/node_modules/eslint/lib/rules/newline-per-chained-call.js +159 -0
  289. package/packages/config-eslint/node_modules/eslint/lib/rules/no-alert.js +149 -0
  290. package/packages/config-eslint/node_modules/eslint/lib/rules/no-array-constructor.js +195 -0
  291. package/packages/config-eslint/node_modules/eslint/lib/rules/no-async-promise-executor.js +45 -0
  292. package/packages/config-eslint/node_modules/eslint/lib/rules/no-await-in-loop.js +115 -0
  293. package/packages/config-eslint/node_modules/eslint/lib/rules/no-bitwise.js +145 -0
  294. package/packages/config-eslint/node_modules/eslint/lib/rules/no-buffer-constructor.js +74 -0
  295. package/packages/config-eslint/node_modules/eslint/lib/rules/no-caller.js +52 -0
  296. package/packages/config-eslint/node_modules/eslint/lib/rules/no-case-declarations.js +80 -0
  297. package/packages/config-eslint/node_modules/eslint/lib/rules/no-catch-shadow.js +96 -0
  298. package/packages/config-eslint/node_modules/eslint/lib/rules/no-class-assign.js +66 -0
  299. package/packages/config-eslint/node_modules/eslint/lib/rules/no-compare-neg-zero.js +74 -0
  300. package/packages/config-eslint/node_modules/eslint/lib/rules/no-cond-assign.js +175 -0
  301. package/packages/config-eslint/node_modules/eslint/lib/rules/no-confusing-arrow.js +127 -0
  302. package/packages/config-eslint/node_modules/eslint/lib/rules/no-console.js +221 -0
  303. package/packages/config-eslint/node_modules/eslint/lib/rules/no-const-assign.js +73 -0
  304. package/packages/config-eslint/node_modules/eslint/lib/rules/no-constant-binary-expression.js +603 -0
  305. package/packages/config-eslint/node_modules/eslint/lib/rules/no-constant-condition.js +177 -0
  306. package/packages/config-eslint/node_modules/eslint/lib/rules/no-constructor-return.js +62 -0
  307. package/packages/config-eslint/node_modules/eslint/lib/rules/no-continue.js +38 -0
  308. package/packages/config-eslint/node_modules/eslint/lib/rules/no-control-regex.js +142 -0
  309. package/packages/config-eslint/node_modules/eslint/lib/rules/no-debugger.js +41 -0
  310. package/packages/config-eslint/node_modules/eslint/lib/rules/no-delete-var.js +42 -0
  311. package/packages/config-eslint/node_modules/eslint/lib/rules/no-div-regex.js +60 -0
  312. package/packages/config-eslint/node_modules/eslint/lib/rules/no-dupe-args.js +92 -0
  313. package/packages/config-eslint/node_modules/eslint/lib/rules/no-dupe-class-members.js +117 -0
  314. package/packages/config-eslint/node_modules/eslint/lib/rules/no-dupe-else-if.js +145 -0
  315. package/packages/config-eslint/node_modules/eslint/lib/rules/no-dupe-keys.js +165 -0
  316. package/packages/config-eslint/node_modules/eslint/lib/rules/no-duplicate-case.js +78 -0
  317. package/packages/config-eslint/node_modules/eslint/lib/rules/no-duplicate-imports.js +368 -0
  318. package/packages/config-eslint/node_modules/eslint/lib/rules/no-else-return.js +450 -0
  319. package/packages/config-eslint/node_modules/eslint/lib/rules/no-empty-character-class.js +83 -0
  320. package/packages/config-eslint/node_modules/eslint/lib/rules/no-empty-function.js +236 -0
  321. package/packages/config-eslint/node_modules/eslint/lib/rules/no-empty-pattern.js +85 -0
  322. package/packages/config-eslint/node_modules/eslint/lib/rules/no-empty-static-block.js +73 -0
  323. package/packages/config-eslint/node_modules/eslint/lib/rules/no-empty.js +153 -0
  324. package/packages/config-eslint/node_modules/eslint/lib/rules/no-eq-null.js +51 -0
  325. package/packages/config-eslint/node_modules/eslint/lib/rules/no-eval.js +295 -0
  326. package/packages/config-eslint/node_modules/eslint/lib/rules/no-ex-assign.js +57 -0
  327. package/packages/config-eslint/node_modules/eslint/lib/rules/no-extend-native.js +180 -0
  328. package/packages/config-eslint/node_modules/eslint/lib/rules/no-extra-bind.js +224 -0
  329. package/packages/config-eslint/node_modules/eslint/lib/rules/no-extra-boolean-cast.js +420 -0
  330. package/packages/config-eslint/node_modules/eslint/lib/rules/no-extra-label.js +169 -0
  331. package/packages/config-eslint/node_modules/eslint/lib/rules/no-extra-parens.js +1669 -0
  332. package/packages/config-eslint/node_modules/eslint/lib/rules/no-extra-semi.js +167 -0
  333. package/packages/config-eslint/node_modules/eslint/lib/rules/no-fallthrough.js +260 -0
  334. package/packages/config-eslint/node_modules/eslint/lib/rules/no-floating-decimal.js +99 -0
  335. package/packages/config-eslint/node_modules/eslint/lib/rules/no-func-assign.js +77 -0
  336. package/packages/config-eslint/node_modules/eslint/lib/rules/no-global-assign.js +101 -0
  337. package/packages/config-eslint/node_modules/eslint/lib/rules/no-implicit-coercion.js +468 -0
  338. package/packages/config-eslint/node_modules/eslint/lib/rules/no-implicit-globals.js +187 -0
  339. package/packages/config-eslint/node_modules/eslint/lib/rules/no-implied-eval.js +171 -0
  340. package/packages/config-eslint/node_modules/eslint/lib/rules/no-import-assign.js +227 -0
  341. package/packages/config-eslint/node_modules/eslint/lib/rules/no-inline-comments.js +115 -0
  342. package/packages/config-eslint/node_modules/eslint/lib/rules/no-inner-declarations.js +147 -0
  343. package/packages/config-eslint/node_modules/eslint/lib/rules/no-invalid-regexp.js +244 -0
  344. package/packages/config-eslint/node_modules/eslint/lib/rules/no-invalid-this.js +178 -0
  345. package/packages/config-eslint/node_modules/eslint/lib/rules/no-irregular-whitespace.js +292 -0
  346. package/packages/config-eslint/node_modules/eslint/lib/rules/no-iterator.js +48 -0
  347. package/packages/config-eslint/node_modules/eslint/lib/rules/no-label-var.js +78 -0
  348. package/packages/config-eslint/node_modules/eslint/lib/rules/no-labels.js +156 -0
  349. package/packages/config-eslint/node_modules/eslint/lib/rules/no-lone-blocks.js +140 -0
  350. package/packages/config-eslint/node_modules/eslint/lib/rules/no-lonely-if.js +126 -0
  351. package/packages/config-eslint/node_modules/eslint/lib/rules/no-loop-func.js +267 -0
  352. package/packages/config-eslint/node_modules/eslint/lib/rules/no-loss-of-precision.js +249 -0
  353. package/packages/config-eslint/node_modules/eslint/lib/rules/no-magic-numbers.js +365 -0
  354. package/packages/config-eslint/node_modules/eslint/lib/rules/no-misleading-character-class.js +595 -0
  355. package/packages/config-eslint/node_modules/eslint/lib/rules/no-mixed-operators.js +253 -0
  356. package/packages/config-eslint/node_modules/eslint/lib/rules/no-mixed-requires.js +267 -0
  357. package/packages/config-eslint/node_modules/eslint/lib/rules/no-mixed-spaces-and-tabs.js +148 -0
  358. package/packages/config-eslint/node_modules/eslint/lib/rules/no-multi-assign.js +66 -0
  359. package/packages/config-eslint/node_modules/eslint/lib/rules/no-multi-spaces.js +179 -0
  360. package/packages/config-eslint/node_modules/eslint/lib/rules/no-multi-str.js +67 -0
  361. package/packages/config-eslint/node_modules/eslint/lib/rules/no-multiple-empty-lines.js +210 -0
  362. package/packages/config-eslint/node_modules/eslint/lib/rules/no-native-reassign.js +114 -0
  363. package/packages/config-eslint/node_modules/eslint/lib/rules/no-negated-condition.js +100 -0
  364. package/packages/config-eslint/node_modules/eslint/lib/rules/no-negated-in-lhs.js +59 -0
  365. package/packages/config-eslint/node_modules/eslint/lib/rules/no-nested-ternary.js +46 -0
  366. package/packages/config-eslint/node_modules/eslint/lib/rules/no-new-func.js +96 -0
  367. package/packages/config-eslint/node_modules/eslint/lib/rules/no-new-native-nonconstructor.js +70 -0
  368. package/packages/config-eslint/node_modules/eslint/lib/rules/no-new-object.js +76 -0
  369. package/packages/config-eslint/node_modules/eslint/lib/rules/no-new-require.js +67 -0
  370. package/packages/config-eslint/node_modules/eslint/lib/rules/no-new-symbol.js +74 -0
  371. package/packages/config-eslint/node_modules/eslint/lib/rules/no-new-wrappers.js +62 -0
  372. package/packages/config-eslint/node_modules/eslint/lib/rules/no-new.js +42 -0
  373. package/packages/config-eslint/node_modules/eslint/lib/rules/no-nonoctal-decimal-escape.js +176 -0
  374. package/packages/config-eslint/node_modules/eslint/lib/rules/no-obj-calls.js +99 -0
  375. package/packages/config-eslint/node_modules/eslint/lib/rules/no-object-constructor.js +124 -0
  376. package/packages/config-eslint/node_modules/eslint/lib/rules/no-octal-escape.js +53 -0
  377. package/packages/config-eslint/node_modules/eslint/lib/rules/no-octal.js +42 -0
  378. package/packages/config-eslint/node_modules/eslint/lib/rules/no-param-reassign.js +248 -0
  379. package/packages/config-eslint/node_modules/eslint/lib/rules/no-path-concat.js +79 -0
  380. package/packages/config-eslint/node_modules/eslint/lib/rules/no-plusplus.js +102 -0
  381. package/packages/config-eslint/node_modules/eslint/lib/rules/no-process-env.js +68 -0
  382. package/packages/config-eslint/node_modules/eslint/lib/rules/no-process-exit.js +67 -0
  383. package/packages/config-eslint/node_modules/eslint/lib/rules/no-promise-executor-return.js +264 -0
  384. package/packages/config-eslint/node_modules/eslint/lib/rules/no-proto.js +45 -0
  385. package/packages/config-eslint/node_modules/eslint/lib/rules/no-prototype-builtins.js +181 -0
  386. package/packages/config-eslint/node_modules/eslint/lib/rules/no-redeclare.js +173 -0
  387. package/packages/config-eslint/node_modules/eslint/lib/rules/no-regex-spaces.js +219 -0
  388. package/packages/config-eslint/node_modules/eslint/lib/rules/no-restricted-exports.js +227 -0
  389. package/packages/config-eslint/node_modules/eslint/lib/rules/no-restricted-globals.js +266 -0
  390. package/packages/config-eslint/node_modules/eslint/lib/rules/no-restricted-imports.js +892 -0
  391. package/packages/config-eslint/node_modules/eslint/lib/rules/no-restricted-modules.js +249 -0
  392. package/packages/config-eslint/node_modules/eslint/lib/rules/no-restricted-properties.js +233 -0
  393. package/packages/config-eslint/node_modules/eslint/lib/rules/no-restricted-syntax.js +74 -0
  394. package/packages/config-eslint/node_modules/eslint/lib/rules/no-return-assign.js +87 -0
  395. package/packages/config-eslint/node_modules/eslint/lib/rules/no-return-await.js +162 -0
  396. package/packages/config-eslint/node_modules/eslint/lib/rules/no-script-url.js +68 -0
  397. package/packages/config-eslint/node_modules/eslint/lib/rules/no-self-assign.js +186 -0
  398. package/packages/config-eslint/node_modules/eslint/lib/rules/no-self-compare.js +77 -0
  399. package/packages/config-eslint/node_modules/eslint/lib/rules/no-sequences.js +158 -0
  400. package/packages/config-eslint/node_modules/eslint/lib/rules/no-setter-return.js +224 -0
  401. package/packages/config-eslint/node_modules/eslint/lib/rules/no-shadow-restricted-names.js +113 -0
  402. package/packages/config-eslint/node_modules/eslint/lib/rules/no-shadow.js +689 -0
  403. package/packages/config-eslint/node_modules/eslint/lib/rules/no-spaced-func.js +105 -0
  404. package/packages/config-eslint/node_modules/eslint/lib/rules/no-sparse-arrays.js +68 -0
  405. package/packages/config-eslint/node_modules/eslint/lib/rules/no-sync.js +81 -0
  406. package/packages/config-eslint/node_modules/eslint/lib/rules/no-tabs.js +110 -0
  407. package/packages/config-eslint/node_modules/eslint/lib/rules/no-template-curly-in-string.js +45 -0
  408. package/packages/config-eslint/node_modules/eslint/lib/rules/no-ternary.js +38 -0
  409. package/packages/config-eslint/node_modules/eslint/lib/rules/no-this-before-super.js +365 -0
  410. package/packages/config-eslint/node_modules/eslint/lib/rules/no-throw-literal.js +46 -0
  411. package/packages/config-eslint/node_modules/eslint/lib/rules/no-trailing-spaces.js +227 -0
  412. package/packages/config-eslint/node_modules/eslint/lib/rules/no-unassigned-vars.js +80 -0
  413. package/packages/config-eslint/node_modules/eslint/lib/rules/no-undef-init.js +101 -0
  414. package/packages/config-eslint/node_modules/eslint/lib/rules/no-undef.js +84 -0
  415. package/packages/config-eslint/node_modules/eslint/lib/rules/no-undefined.js +85 -0
  416. package/packages/config-eslint/node_modules/eslint/lib/rules/no-underscore-dangle.js +383 -0
  417. package/packages/config-eslint/node_modules/eslint/lib/rules/no-unexpected-multiline.js +130 -0
  418. package/packages/config-eslint/node_modules/eslint/lib/rules/no-unmodified-loop-condition.js +360 -0
  419. package/packages/config-eslint/node_modules/eslint/lib/rules/no-unneeded-ternary.js +232 -0
  420. package/packages/config-eslint/node_modules/eslint/lib/rules/no-unreachable-loop.js +190 -0
  421. package/packages/config-eslint/node_modules/eslint/lib/rules/no-unreachable.js +300 -0
  422. package/packages/config-eslint/node_modules/eslint/lib/rules/no-unsafe-finally.js +119 -0
  423. package/packages/config-eslint/node_modules/eslint/lib/rules/no-unsafe-negation.js +152 -0
  424. package/packages/config-eslint/node_modules/eslint/lib/rules/no-unsafe-optional-chaining.js +221 -0
  425. package/packages/config-eslint/node_modules/eslint/lib/rules/no-unused-expressions.js +227 -0
  426. package/packages/config-eslint/node_modules/eslint/lib/rules/no-unused-labels.js +158 -0
  427. package/packages/config-eslint/node_modules/eslint/lib/rules/no-unused-private-class-members.js +219 -0
  428. package/packages/config-eslint/node_modules/eslint/lib/rules/no-unused-vars.js +1739 -0
  429. package/packages/config-eslint/node_modules/eslint/lib/rules/no-use-before-define.js +446 -0
  430. package/packages/config-eslint/node_modules/eslint/lib/rules/no-useless-assignment.js +657 -0
  431. package/packages/config-eslint/node_modules/eslint/lib/rules/no-useless-backreference.js +263 -0
  432. package/packages/config-eslint/node_modules/eslint/lib/rules/no-useless-call.js +95 -0
  433. package/packages/config-eslint/node_modules/eslint/lib/rules/no-useless-catch.js +57 -0
  434. package/packages/config-eslint/node_modules/eslint/lib/rules/no-useless-computed-key.js +204 -0
  435. package/packages/config-eslint/node_modules/eslint/lib/rules/no-useless-concat.js +121 -0
  436. package/packages/config-eslint/node_modules/eslint/lib/rules/no-useless-constructor.js +262 -0
  437. package/packages/config-eslint/node_modules/eslint/lib/rules/no-useless-escape.js +406 -0
  438. package/packages/config-eslint/node_modules/eslint/lib/rules/no-useless-rename.js +202 -0
  439. package/packages/config-eslint/node_modules/eslint/lib/rules/no-useless-return.js +401 -0
  440. package/packages/config-eslint/node_modules/eslint/lib/rules/no-var.js +367 -0
  441. package/packages/config-eslint/node_modules/eslint/lib/rules/no-void.js +69 -0
  442. package/packages/config-eslint/node_modules/eslint/lib/rules/no-warning-comments.js +209 -0
  443. package/packages/config-eslint/node_modules/eslint/lib/rules/no-whitespace-before-property.js +150 -0
  444. package/packages/config-eslint/node_modules/eslint/lib/rules/no-with.js +37 -0
  445. package/packages/config-eslint/node_modules/eslint/lib/rules/nonblock-statement-body-position.js +164 -0
  446. package/packages/config-eslint/node_modules/eslint/lib/rules/object-curly-newline.js +383 -0
  447. package/packages/config-eslint/node_modules/eslint/lib/rules/object-curly-spacing.js +369 -0
  448. package/packages/config-eslint/node_modules/eslint/lib/rules/object-property-newline.js +151 -0
  449. package/packages/config-eslint/node_modules/eslint/lib/rules/object-shorthand.js +652 -0
  450. package/packages/config-eslint/node_modules/eslint/lib/rules/one-var-declaration-per-line.js +117 -0
  451. package/packages/config-eslint/node_modules/eslint/lib/rules/one-var.js +717 -0
  452. package/packages/config-eslint/node_modules/eslint/lib/rules/operator-assignment.js +270 -0
  453. package/packages/config-eslint/node_modules/eslint/lib/rules/operator-linebreak.js +315 -0
  454. package/packages/config-eslint/node_modules/eslint/lib/rules/padded-blocks.js +366 -0
  455. package/packages/config-eslint/node_modules/eslint/lib/rules/padding-line-between-statements.js +612 -0
  456. package/packages/config-eslint/node_modules/eslint/lib/rules/prefer-arrow-callback.js +437 -0
  457. package/packages/config-eslint/node_modules/eslint/lib/rules/prefer-const.js +546 -0
  458. package/packages/config-eslint/node_modules/eslint/lib/rules/prefer-destructuring.js +332 -0
  459. package/packages/config-eslint/node_modules/eslint/lib/rules/prefer-exponentiation-operator.js +235 -0
  460. package/packages/config-eslint/node_modules/eslint/lib/rules/prefer-named-capture-group.js +197 -0
  461. package/packages/config-eslint/node_modules/eslint/lib/rules/prefer-numeric-literals.js +157 -0
  462. package/packages/config-eslint/node_modules/eslint/lib/rules/prefer-object-has-own.js +148 -0
  463. package/packages/config-eslint/node_modules/eslint/lib/rules/prefer-object-spread.js +319 -0
  464. package/packages/config-eslint/node_modules/eslint/lib/rules/prefer-promise-reject-errors.js +154 -0
  465. package/packages/config-eslint/node_modules/eslint/lib/rules/prefer-reflect.js +150 -0
  466. package/packages/config-eslint/node_modules/eslint/lib/rules/prefer-regex-literals.js +605 -0
  467. package/packages/config-eslint/node_modules/eslint/lib/rules/prefer-rest-params.js +117 -0
  468. package/packages/config-eslint/node_modules/eslint/lib/rules/prefer-spread.js +91 -0
  469. package/packages/config-eslint/node_modules/eslint/lib/rules/prefer-template.js +347 -0
  470. package/packages/config-eslint/node_modules/eslint/lib/rules/preserve-caught-error.js +535 -0
  471. package/packages/config-eslint/node_modules/eslint/lib/rules/quote-props.js +394 -0
  472. package/packages/config-eslint/node_modules/eslint/lib/rules/quotes.js +416 -0
  473. package/packages/config-eslint/node_modules/eslint/lib/rules/radix.js +193 -0
  474. package/packages/config-eslint/node_modules/eslint/lib/rules/require-atomic-updates.js +365 -0
  475. package/packages/config-eslint/node_modules/eslint/lib/rules/require-await.js +184 -0
  476. package/packages/config-eslint/node_modules/eslint/lib/rules/require-unicode-regexp.js +317 -0
  477. package/packages/config-eslint/node_modules/eslint/lib/rules/require-yield.js +86 -0
  478. package/packages/config-eslint/node_modules/eslint/lib/rules/rest-spread-spacing.js +150 -0
  479. package/packages/config-eslint/node_modules/eslint/lib/rules/semi-spacing.js +297 -0
  480. package/packages/config-eslint/node_modules/eslint/lib/rules/semi-style.js +218 -0
  481. package/packages/config-eslint/node_modules/eslint/lib/rules/semi.js +476 -0
  482. package/packages/config-eslint/node_modules/eslint/lib/rules/sort-imports.js +319 -0
  483. package/packages/config-eslint/node_modules/eslint/lib/rules/sort-keys.js +268 -0
  484. package/packages/config-eslint/node_modules/eslint/lib/rules/sort-vars.js +140 -0
  485. package/packages/config-eslint/node_modules/eslint/lib/rules/space-before-blocks.js +232 -0
  486. package/packages/config-eslint/node_modules/eslint/lib/rules/space-before-function-paren.js +202 -0
  487. package/packages/config-eslint/node_modules/eslint/lib/rules/space-in-parens.js +374 -0
  488. package/packages/config-eslint/node_modules/eslint/lib/rules/space-infix-ops.js +249 -0
  489. package/packages/config-eslint/node_modules/eslint/lib/rules/space-unary-ops.js +400 -0
  490. package/packages/config-eslint/node_modules/eslint/lib/rules/spaced-comment.js +447 -0
  491. package/packages/config-eslint/node_modules/eslint/lib/rules/strict.js +324 -0
  492. package/packages/config-eslint/node_modules/eslint/lib/rules/switch-colon-spacing.js +158 -0
  493. package/packages/config-eslint/node_modules/eslint/lib/rules/symbol-description.js +70 -0
  494. package/packages/config-eslint/node_modules/eslint/lib/rules/template-curly-spacing.js +168 -0
  495. package/packages/config-eslint/node_modules/eslint/lib/rules/template-tag-spacing.js +121 -0
  496. package/packages/config-eslint/node_modules/eslint/lib/rules/unicode-bom.js +73 -0
  497. package/packages/config-eslint/node_modules/eslint/lib/rules/use-isnan.js +268 -0
  498. package/packages/config-eslint/node_modules/eslint/lib/rules/utils/ast-utils.js +2841 -0
  499. package/packages/config-eslint/node_modules/eslint/lib/rules/utils/char-source.js +247 -0
  500. package/packages/config-eslint/node_modules/eslint/lib/rules/utils/fix-tracker.js +125 -0
  501. package/packages/config-eslint/node_modules/eslint/lib/rules/utils/keywords.js +67 -0
  502. package/packages/config-eslint/node_modules/eslint/lib/rules/utils/lazy-loading-rule-map.js +118 -0
  503. package/packages/config-eslint/node_modules/eslint/lib/rules/utils/regular-expressions.js +58 -0
  504. package/packages/config-eslint/node_modules/eslint/lib/rules/utils/unicode/index.js +16 -0
  505. package/packages/config-eslint/node_modules/eslint/lib/rules/utils/unicode/is-combining-character.js +13 -0
  506. package/packages/config-eslint/node_modules/eslint/lib/rules/utils/unicode/is-emoji-modifier.js +13 -0
  507. package/packages/config-eslint/node_modules/eslint/lib/rules/utils/unicode/is-regional-indicator-symbol.js +13 -0
  508. package/packages/config-eslint/node_modules/eslint/lib/rules/utils/unicode/is-surrogate-pair.js +14 -0
  509. package/packages/config-eslint/node_modules/eslint/lib/rules/valid-typeof.js +171 -0
  510. package/packages/config-eslint/node_modules/eslint/lib/rules/vars-on-top.js +165 -0
  511. package/packages/config-eslint/node_modules/eslint/lib/rules/wrap-iife.js +238 -0
  512. package/packages/config-eslint/node_modules/eslint/lib/rules/wrap-regex.js +91 -0
  513. package/packages/config-eslint/node_modules/eslint/lib/rules/yield-star-spacing.js +158 -0
  514. package/packages/config-eslint/node_modules/eslint/lib/rules/yoda.js +362 -0
  515. package/packages/config-eslint/node_modules/eslint/lib/services/parser-service.js +64 -0
  516. package/packages/config-eslint/node_modules/eslint/lib/services/processor-service.js +100 -0
  517. package/packages/config-eslint/node_modules/eslint/lib/services/suppressions-service.js +302 -0
  518. package/packages/config-eslint/node_modules/eslint/lib/services/warning-service.js +87 -0
  519. package/packages/config-eslint/node_modules/eslint/lib/shared/ajv.js +34 -0
  520. package/packages/config-eslint/node_modules/eslint/lib/shared/assert.js +21 -0
  521. package/packages/config-eslint/node_modules/eslint/lib/shared/ast-utils.js +30 -0
  522. package/packages/config-eslint/node_modules/eslint/lib/shared/deep-merge-arrays.js +62 -0
  523. package/packages/config-eslint/node_modules/eslint/lib/shared/directives.js +16 -0
  524. package/packages/config-eslint/node_modules/eslint/lib/shared/flags.js +89 -0
  525. package/packages/config-eslint/node_modules/eslint/lib/shared/logging.js +38 -0
  526. package/packages/config-eslint/node_modules/eslint/lib/shared/naming.js +109 -0
  527. package/packages/config-eslint/node_modules/eslint/lib/shared/option-utils.js +63 -0
  528. package/packages/config-eslint/node_modules/eslint/lib/shared/relative-module-resolver.js +28 -0
  529. package/packages/config-eslint/node_modules/eslint/lib/shared/runtime-info.js +177 -0
  530. package/packages/config-eslint/node_modules/eslint/lib/shared/serialization.js +78 -0
  531. package/packages/config-eslint/node_modules/eslint/lib/shared/severity.js +49 -0
  532. package/packages/config-eslint/node_modules/eslint/lib/shared/stats.js +30 -0
  533. package/packages/config-eslint/node_modules/eslint/lib/shared/string-utils.js +58 -0
  534. package/packages/config-eslint/node_modules/eslint/lib/shared/text-table.js +68 -0
  535. package/packages/config-eslint/node_modules/eslint/lib/shared/translate-cli-options.js +223 -0
  536. package/packages/config-eslint/node_modules/eslint/lib/shared/traverser.js +202 -0
  537. package/packages/config-eslint/node_modules/eslint/lib/types/config-api.d.ts +12 -0
  538. package/packages/config-eslint/node_modules/eslint/lib/types/index.d.ts +1475 -0
  539. package/packages/config-eslint/node_modules/eslint/lib/types/rules.d.ts +5603 -0
  540. package/packages/config-eslint/node_modules/eslint/lib/types/universal.d.ts +6 -0
  541. package/packages/config-eslint/node_modules/eslint/lib/types/use-at-your-own-risk.d.ts +34 -0
  542. package/packages/config-eslint/node_modules/eslint/lib/universal.js +10 -0
  543. package/packages/config-eslint/node_modules/eslint/lib/unsupported-api.js +21 -0
  544. package/packages/config-eslint/node_modules/eslint/messages/all-files-ignored.js +16 -0
  545. package/packages/config-eslint/node_modules/eslint/messages/all-matched-files-ignored.js +21 -0
  546. package/packages/config-eslint/node_modules/eslint/messages/config-file-missing.js +16 -0
  547. package/packages/config-eslint/node_modules/eslint/messages/config-plugin-missing.js +14 -0
  548. package/packages/config-eslint/node_modules/eslint/messages/config-serialize-function.js +30 -0
  549. package/packages/config-eslint/node_modules/eslint/messages/eslintrc-incompat.js +117 -0
  550. package/packages/config-eslint/node_modules/eslint/messages/eslintrc-plugins.js +27 -0
  551. package/packages/config-eslint/node_modules/eslint/messages/extend-config-missing.js +13 -0
  552. package/packages/config-eslint/node_modules/eslint/messages/failed-to-read-json.js +11 -0
  553. package/packages/config-eslint/node_modules/eslint/messages/file-not-found.js +10 -0
  554. package/packages/config-eslint/node_modules/eslint/messages/invalid-rule-options.js +17 -0
  555. package/packages/config-eslint/node_modules/eslint/messages/invalid-rule-severity.js +13 -0
  556. package/packages/config-eslint/node_modules/eslint/messages/no-config-found.js +15 -0
  557. package/packages/config-eslint/node_modules/eslint/messages/plugin-conflict.js +22 -0
  558. package/packages/config-eslint/node_modules/eslint/messages/plugin-invalid.js +16 -0
  559. package/packages/config-eslint/node_modules/eslint/messages/plugin-missing.js +19 -0
  560. package/packages/config-eslint/node_modules/eslint/messages/print-config-with-directory-path.js +8 -0
  561. package/packages/config-eslint/node_modules/eslint/messages/shared.js +23 -0
  562. package/packages/config-eslint/node_modules/eslint/messages/whitespace-found.js +11 -0
  563. package/packages/config-eslint/node_modules/eslint/package.json +220 -0
  564. package/packages/config-eslint/node_modules/eslint-scope/LICENSE +22 -0
  565. package/packages/config-eslint/node_modules/eslint-scope/README.md +206 -0
  566. package/packages/config-eslint/node_modules/eslint-scope/dist/eslint-scope.cjs +2420 -0
  567. package/packages/config-eslint/node_modules/eslint-scope/lib/assert.js +17 -0
  568. package/packages/config-eslint/node_modules/eslint-scope/lib/definition.js +89 -0
  569. package/packages/config-eslint/node_modules/eslint-scope/lib/index.d.cts +1069 -0
  570. package/packages/config-eslint/node_modules/eslint-scope/lib/index.d.ts +6 -0
  571. package/packages/config-eslint/node_modules/eslint-scope/lib/index.js +170 -0
  572. package/packages/config-eslint/node_modules/eslint-scope/lib/pattern-visitor.js +157 -0
  573. package/packages/config-eslint/node_modules/eslint-scope/lib/reference.js +165 -0
  574. package/packages/config-eslint/node_modules/eslint-scope/lib/referencer.js +712 -0
  575. package/packages/config-eslint/node_modules/eslint-scope/lib/scope-manager.js +271 -0
  576. package/packages/config-eslint/node_modules/eslint-scope/lib/scope.js +839 -0
  577. package/packages/config-eslint/node_modules/eslint-scope/lib/variable.js +91 -0
  578. package/packages/config-eslint/node_modules/eslint-scope/package.json +69 -0
  579. package/packages/config-eslint/node_modules/eslint-visitor-keys/LICENSE +201 -0
  580. package/packages/config-eslint/node_modules/eslint-visitor-keys/README.md +121 -0
  581. package/packages/config-eslint/node_modules/eslint-visitor-keys/dist/eslint-visitor-keys.cjs +396 -0
  582. package/packages/config-eslint/node_modules/eslint-visitor-keys/dist/eslint-visitor-keys.d.cts +28 -0
  583. package/packages/config-eslint/node_modules/eslint-visitor-keys/dist/index.d.ts +16 -0
  584. package/packages/config-eslint/node_modules/eslint-visitor-keys/dist/visitor-keys.d.ts +12 -0
  585. package/packages/config-eslint/node_modules/eslint-visitor-keys/lib/index.js +67 -0
  586. package/packages/config-eslint/node_modules/eslint-visitor-keys/lib/visitor-keys.js +327 -0
  587. package/packages/config-eslint/node_modules/eslint-visitor-keys/package.json +59 -0
  588. package/packages/config-eslint/node_modules/espree/LICENSE +25 -0
  589. package/packages/config-eslint/node_modules/espree/README.md +262 -0
  590. package/packages/config-eslint/node_modules/espree/dist/espree.cjs +1272 -0
  591. package/packages/config-eslint/node_modules/espree/dist/espree.d.cts +3 -0
  592. package/packages/config-eslint/node_modules/espree/dist/espree.d.cts.map +1 -0
  593. package/packages/config-eslint/node_modules/espree/dist/espree.d.ts +71 -0
  594. package/packages/config-eslint/node_modules/espree/dist/espree.d.ts.map +1 -0
  595. package/packages/config-eslint/node_modules/espree/espree.js +291 -0
  596. package/packages/config-eslint/node_modules/espree/lib/espree.js +482 -0
  597. package/packages/config-eslint/node_modules/espree/lib/features.js +21 -0
  598. package/packages/config-eslint/node_modules/espree/lib/options.js +164 -0
  599. package/packages/config-eslint/node_modules/espree/lib/token-translator.js +306 -0
  600. package/packages/config-eslint/node_modules/espree/lib/types.js +118 -0
  601. package/packages/config-eslint/node_modules/espree/package.json +72 -0
  602. package/packages/config-eslint/node_modules/ignore/LICENSE-MIT +21 -0
  603. package/packages/config-eslint/node_modules/ignore/README.md +412 -0
  604. package/packages/config-eslint/node_modules/ignore/index.d.ts +61 -0
  605. package/packages/config-eslint/node_modules/ignore/index.js +636 -0
  606. package/packages/config-eslint/node_modules/ignore/legacy.js +559 -0
  607. package/packages/config-eslint/node_modules/ignore/package.json +74 -0
  608. package/packages/config-eslint/node_modules/json-schema-traverse/.eslintrc.yml +27 -0
  609. package/packages/config-eslint/node_modules/json-schema-traverse/.travis.yml +8 -0
  610. package/packages/config-eslint/node_modules/json-schema-traverse/LICENSE +21 -0
  611. package/packages/config-eslint/node_modules/json-schema-traverse/README.md +83 -0
  612. package/packages/config-eslint/node_modules/json-schema-traverse/index.js +89 -0
  613. package/packages/config-eslint/node_modules/json-schema-traverse/package.json +43 -0
  614. package/packages/config-eslint/node_modules/json-schema-traverse/spec/.eslintrc.yml +6 -0
  615. package/packages/config-eslint/node_modules/json-schema-traverse/spec/fixtures/schema.js +125 -0
  616. package/packages/config-eslint/node_modules/json-schema-traverse/spec/index.spec.js +171 -0
  617. package/packages/config-eslint/node_modules/minimatch/LICENSE.md +55 -0
  618. package/packages/config-eslint/node_modules/minimatch/README.md +453 -0
  619. package/packages/config-eslint/node_modules/minimatch/dist/commonjs/assert-valid-pattern.d.ts +2 -0
  620. package/packages/config-eslint/node_modules/minimatch/dist/commonjs/assert-valid-pattern.d.ts.map +1 -0
  621. package/packages/config-eslint/node_modules/minimatch/dist/commonjs/assert-valid-pattern.js +14 -0
  622. package/packages/config-eslint/node_modules/minimatch/dist/commonjs/assert-valid-pattern.js.map +1 -0
  623. package/packages/config-eslint/node_modules/minimatch/dist/commonjs/ast.d.ts +20 -0
  624. package/packages/config-eslint/node_modules/minimatch/dist/commonjs/ast.d.ts.map +1 -0
  625. package/packages/config-eslint/node_modules/minimatch/dist/commonjs/ast.js +591 -0
  626. package/packages/config-eslint/node_modules/minimatch/dist/commonjs/ast.js.map +1 -0
  627. package/packages/config-eslint/node_modules/minimatch/dist/commonjs/brace-expressions.d.ts +8 -0
  628. package/packages/config-eslint/node_modules/minimatch/dist/commonjs/brace-expressions.d.ts.map +1 -0
  629. package/packages/config-eslint/node_modules/minimatch/dist/commonjs/brace-expressions.js +152 -0
  630. package/packages/config-eslint/node_modules/minimatch/dist/commonjs/brace-expressions.js.map +1 -0
  631. package/packages/config-eslint/node_modules/minimatch/dist/commonjs/escape.d.ts +15 -0
  632. package/packages/config-eslint/node_modules/minimatch/dist/commonjs/escape.d.ts.map +1 -0
  633. package/packages/config-eslint/node_modules/minimatch/dist/commonjs/escape.js +30 -0
  634. package/packages/config-eslint/node_modules/minimatch/dist/commonjs/escape.js.map +1 -0
  635. package/packages/config-eslint/node_modules/minimatch/dist/commonjs/index.d.ts +94 -0
  636. package/packages/config-eslint/node_modules/minimatch/dist/commonjs/index.d.ts.map +1 -0
  637. package/packages/config-eslint/node_modules/minimatch/dist/commonjs/index.js +1029 -0
  638. package/packages/config-eslint/node_modules/minimatch/dist/commonjs/index.js.map +1 -0
  639. package/packages/config-eslint/node_modules/minimatch/dist/commonjs/package.json +3 -0
  640. package/packages/config-eslint/node_modules/minimatch/dist/commonjs/unescape.d.ts +22 -0
  641. package/packages/config-eslint/node_modules/minimatch/dist/commonjs/unescape.d.ts.map +1 -0
  642. package/packages/config-eslint/node_modules/minimatch/dist/commonjs/unescape.js +38 -0
  643. package/packages/config-eslint/node_modules/minimatch/dist/commonjs/unescape.js.map +1 -0
  644. package/packages/config-eslint/node_modules/minimatch/dist/esm/assert-valid-pattern.d.ts +2 -0
  645. package/packages/config-eslint/node_modules/minimatch/dist/esm/assert-valid-pattern.d.ts.map +1 -0
  646. package/packages/config-eslint/node_modules/minimatch/dist/esm/assert-valid-pattern.js +10 -0
  647. package/packages/config-eslint/node_modules/minimatch/dist/esm/assert-valid-pattern.js.map +1 -0
  648. package/packages/config-eslint/node_modules/minimatch/dist/esm/ast.d.ts +20 -0
  649. package/packages/config-eslint/node_modules/minimatch/dist/esm/ast.d.ts.map +1 -0
  650. package/packages/config-eslint/node_modules/minimatch/dist/esm/ast.js +587 -0
  651. package/packages/config-eslint/node_modules/minimatch/dist/esm/ast.js.map +1 -0
  652. package/packages/config-eslint/node_modules/minimatch/dist/esm/brace-expressions.d.ts +8 -0
  653. package/packages/config-eslint/node_modules/minimatch/dist/esm/brace-expressions.d.ts.map +1 -0
  654. package/packages/config-eslint/node_modules/minimatch/dist/esm/brace-expressions.js +148 -0
  655. package/packages/config-eslint/node_modules/minimatch/dist/esm/brace-expressions.js.map +1 -0
  656. package/packages/config-eslint/node_modules/minimatch/dist/esm/escape.d.ts +15 -0
  657. package/packages/config-eslint/node_modules/minimatch/dist/esm/escape.d.ts.map +1 -0
  658. package/packages/config-eslint/node_modules/minimatch/dist/esm/escape.js +26 -0
  659. package/packages/config-eslint/node_modules/minimatch/dist/esm/escape.js.map +1 -0
  660. package/packages/config-eslint/node_modules/minimatch/dist/esm/index.d.ts +94 -0
  661. package/packages/config-eslint/node_modules/minimatch/dist/esm/index.d.ts.map +1 -0
  662. package/packages/config-eslint/node_modules/minimatch/dist/esm/index.js +1016 -0
  663. package/packages/config-eslint/node_modules/minimatch/dist/esm/index.js.map +1 -0
  664. package/packages/config-eslint/node_modules/minimatch/dist/esm/package.json +3 -0
  665. package/packages/config-eslint/node_modules/minimatch/dist/esm/unescape.d.ts +22 -0
  666. package/packages/config-eslint/node_modules/minimatch/dist/esm/unescape.d.ts.map +1 -0
  667. package/packages/config-eslint/node_modules/minimatch/dist/esm/unescape.js +34 -0
  668. package/packages/config-eslint/node_modules/minimatch/dist/esm/unescape.js.map +1 -0
  669. package/packages/config-eslint/node_modules/minimatch/package.json +67 -0
  670. package/packages/config-eslint/package.json +7 -7
@@ -0,0 +1,1336 @@
1
+ // @ts-nocheck
2
+ 'use strict';
3
+
4
+ // Copyright 2018-2025 the Deno authors. MIT license.
5
+ // Copyright the Browserify authors. MIT License.
6
+ function assertPath(path) {
7
+ if (typeof path !== "string") {
8
+ throw new TypeError(`Path must be a string, received "${JSON.stringify(path)}"`);
9
+ }
10
+ }
11
+
12
+ // Copyright 2018-2025 the Deno authors. MIT license.
13
+ // This module is browser compatible.
14
+ function stripSuffix(name, suffix) {
15
+ if (suffix.length >= name.length) {
16
+ return name;
17
+ }
18
+ const lenDiff = name.length - suffix.length;
19
+ for(let i = suffix.length - 1; i >= 0; --i){
20
+ if (name.charCodeAt(lenDiff + i) !== suffix.charCodeAt(i)) {
21
+ return name;
22
+ }
23
+ }
24
+ return name.slice(0, -suffix.length);
25
+ }
26
+ function lastPathSegment(path, isSep, start = 0) {
27
+ let matchedNonSeparator = false;
28
+ let end = path.length;
29
+ for(let i = path.length - 1; i >= start; --i){
30
+ if (isSep(path.charCodeAt(i))) {
31
+ if (matchedNonSeparator) {
32
+ start = i + 1;
33
+ break;
34
+ }
35
+ } else if (!matchedNonSeparator) {
36
+ matchedNonSeparator = true;
37
+ end = i + 1;
38
+ }
39
+ }
40
+ return path.slice(start, end);
41
+ }
42
+ function assertArgs$1(path, suffix) {
43
+ assertPath(path);
44
+ if (path.length === 0) return path;
45
+ if (typeof suffix !== "string") {
46
+ throw new TypeError(`Suffix must be a string, received "${JSON.stringify(suffix)}"`);
47
+ }
48
+ }
49
+
50
+ // Copyright 2018-2025 the Deno authors. MIT license.
51
+ // This module is browser compatible.
52
+ function assertArg$3(url) {
53
+ url = url instanceof URL ? url : new URL(url);
54
+ if (url.protocol !== "file:") {
55
+ throw new TypeError(`URL must be a file URL: received "${url.protocol}"`);
56
+ }
57
+ return url;
58
+ }
59
+
60
+ // Copyright 2018-2025 the Deno authors. MIT license.
61
+ // This module is browser compatible.
62
+ /**
63
+ * Converts a file URL to a path string.
64
+ *
65
+ * @example Usage
66
+ * ```ts
67
+ * import { fromFileUrl } from "@std/path/posix/from-file-url";
68
+ * import { assertEquals } from "@std/assert";
69
+ *
70
+ * assertEquals(fromFileUrl(new URL("file:///home/foo")), "/home/foo");
71
+ * ```
72
+ *
73
+ * @param url The file URL to convert.
74
+ * @returns The path string.
75
+ */ function fromFileUrl(url) {
76
+ url = assertArg$3(url);
77
+ return decodeURIComponent(url.pathname.replace(/%(?![0-9A-Fa-f]{2})/g, "%25"));
78
+ }
79
+
80
+ // Copyright 2018-2025 the Deno authors. MIT license.
81
+ // Copyright the Browserify authors. MIT License.
82
+ // Ported from https://github.com/browserify/path-browserify/
83
+ // This module is browser compatible.
84
+ function stripTrailingSeparators(segment, isSep) {
85
+ if (segment.length <= 1) {
86
+ return segment;
87
+ }
88
+ let end = segment.length;
89
+ for(let i = segment.length - 1; i > 0; i--){
90
+ if (isSep(segment.charCodeAt(i))) {
91
+ end = i;
92
+ } else {
93
+ break;
94
+ }
95
+ }
96
+ return segment.slice(0, end);
97
+ }
98
+
99
+ // Copyright 2018-2025 the Deno authors. MIT license.
100
+ // Copyright the Browserify authors. MIT License.
101
+ // Ported from https://github.com/browserify/path-browserify/
102
+ // This module is browser compatible.
103
+ // Alphabet chars.
104
+ // Non-alphabetic chars.
105
+ const CHAR_DOT = 46; /* . */
106
+ const CHAR_FORWARD_SLASH = 47; /* / */
107
+
108
+ // Copyright 2018-2025 the Deno authors. MIT license.
109
+ // Copyright the Browserify authors. MIT License.
110
+ // Ported from https://github.com/browserify/path-browserify/
111
+ // This module is browser compatible.
112
+ function isPosixPathSeparator(code) {
113
+ return code === CHAR_FORWARD_SLASH;
114
+ }
115
+
116
+ // Copyright 2018-2025 the Deno authors. MIT license.
117
+ // This module is browser compatible.
118
+ /**
119
+ * Return the last portion of a `path`.
120
+ * Trailing directory separators are ignored, and optional suffix is removed.
121
+ *
122
+ * @example Usage
123
+ * ```ts
124
+ * import { basename } from "@std/path/posix/basename";
125
+ * import { assertEquals } from "@std/assert";
126
+ *
127
+ * assertEquals(basename("/home/user/Documents/"), "Documents");
128
+ * assertEquals(basename("/home/user/Documents/image.png"), "image.png");
129
+ * assertEquals(basename("/home/user/Documents/image.png", ".png"), "image");
130
+ * assertEquals(basename(new URL("file:///home/user/Documents/image.png")), "image.png");
131
+ * assertEquals(basename(new URL("file:///home/user/Documents/image.png"), ".png"), "image");
132
+ * ```
133
+ *
134
+ * @example Working with URLs
135
+ *
136
+ * Note: This function doesn't automatically strip hash and query parts from
137
+ * URLs. If your URL contains a hash or query, remove them before passing the
138
+ * URL to the function. This can be done by passing the URL to `new URL(url)`,
139
+ * and setting the `hash` and `search` properties to empty strings.
140
+ *
141
+ * ```ts
142
+ * import { basename } from "@std/path/posix/basename";
143
+ * import { assertEquals } from "@std/assert";
144
+ *
145
+ * assertEquals(basename("https://deno.land/std/path/mod.ts"), "mod.ts");
146
+ * assertEquals(basename("https://deno.land/std/path/mod.ts", ".ts"), "mod");
147
+ * assertEquals(basename("https://deno.land/std/path/mod.ts?a=b"), "mod.ts?a=b");
148
+ * assertEquals(basename("https://deno.land/std/path/mod.ts#header"), "mod.ts#header");
149
+ * ```
150
+ *
151
+ * @param path The path to extract the name from.
152
+ * @param suffix The suffix to remove from extracted name.
153
+ * @returns The extracted name.
154
+ */ function basename(path, suffix = "") {
155
+ if (path instanceof URL) {
156
+ path = fromFileUrl(path);
157
+ }
158
+ assertArgs$1(path, suffix);
159
+ const lastSegment = lastPathSegment(path, isPosixPathSeparator);
160
+ const strippedSegment = stripTrailingSeparators(lastSegment, isPosixPathSeparator);
161
+ return suffix ? stripSuffix(strippedSegment, suffix) : strippedSegment;
162
+ }
163
+
164
+ // Copyright 2018-2025 the Deno authors. MIT license.
165
+ // This module is browser compatible.
166
+ /**
167
+ * The character used to separate entries in the PATH environment variable.
168
+ */ const DELIMITER = ":";
169
+ /**
170
+ * The character used to separate components of a file path.
171
+ */ const SEPARATOR = "/";
172
+ /**
173
+ * A regular expression that matches one or more path separators.
174
+ */ const SEPARATOR_PATTERN = /\/+/;
175
+
176
+ // Copyright 2018-2025 the Deno authors. MIT license.
177
+ // This module is browser compatible.
178
+ function assertArg$2(path) {
179
+ assertPath(path);
180
+ if (path.length === 0) return ".";
181
+ }
182
+
183
+ // Copyright 2018-2025 the Deno authors. MIT license.
184
+ // This module is browser compatible.
185
+ /**
186
+ * Return the directory path of a `path`.
187
+ *
188
+ * @example Usage
189
+ * ```ts
190
+ * import { dirname } from "@std/path/posix/dirname";
191
+ * import { assertEquals } from "@std/assert";
192
+ *
193
+ * assertEquals(dirname("/home/user/Documents/"), "/home/user");
194
+ * assertEquals(dirname("/home/user/Documents/image.png"), "/home/user/Documents");
195
+ * assertEquals(dirname("https://deno.land/std/path/mod.ts"), "https://deno.land/std/path");
196
+ * assertEquals(dirname(new URL("file:///home/user/Documents/image.png")), "/home/user/Documents");
197
+ * ```
198
+ *
199
+ * @example Working with URLs
200
+ *
201
+ * ```ts
202
+ * import { dirname } from "@std/path/posix/dirname";
203
+ * import { assertEquals } from "@std/assert";
204
+ *
205
+ * assertEquals(dirname("https://deno.land/std/path/mod.ts"), "https://deno.land/std/path");
206
+ * assertEquals(dirname("https://deno.land/std/path/mod.ts?a=b"), "https://deno.land/std/path");
207
+ * assertEquals(dirname("https://deno.land/std/path/mod.ts#header"), "https://deno.land/std/path");
208
+ * ```
209
+ *
210
+ * @param path The path to get the directory from.
211
+ * @returns The directory path.
212
+ */ function dirname(path) {
213
+ if (path instanceof URL) {
214
+ path = fromFileUrl(path);
215
+ }
216
+ assertArg$2(path);
217
+ let end = -1;
218
+ let matchedNonSeparator = false;
219
+ for(let i = path.length - 1; i >= 1; --i){
220
+ if (isPosixPathSeparator(path.charCodeAt(i))) {
221
+ if (matchedNonSeparator) {
222
+ end = i;
223
+ break;
224
+ }
225
+ } else {
226
+ matchedNonSeparator = true;
227
+ }
228
+ }
229
+ // No matches. Fallback based on provided path:
230
+ //
231
+ // - leading slashes paths
232
+ // "/foo" => "/"
233
+ // "///foo" => "/"
234
+ // - no slash path
235
+ // "foo" => "."
236
+ if (end === -1) {
237
+ return isPosixPathSeparator(path.charCodeAt(0)) ? "/" : ".";
238
+ }
239
+ return stripTrailingSeparators(path.slice(0, end), isPosixPathSeparator);
240
+ }
241
+
242
+ // Copyright 2018-2025 the Deno authors. MIT license.
243
+ // This module is browser compatible.
244
+ /**
245
+ * Return the extension of the `path` with leading period.
246
+ *
247
+ * @example Usage
248
+ * ```ts
249
+ * import { extname } from "@std/path/posix/extname";
250
+ * import { assertEquals } from "@std/assert";
251
+ *
252
+ * assertEquals(extname("/home/user/Documents/file.ts"), ".ts");
253
+ * assertEquals(extname("/home/user/Documents/"), "");
254
+ * assertEquals(extname("/home/user/Documents/image.png"), ".png");
255
+ * assertEquals(extname(new URL("file:///home/user/Documents/file.ts")), ".ts");
256
+ * assertEquals(extname(new URL("file:///home/user/Documents/file.ts?a=b")), ".ts");
257
+ * assertEquals(extname(new URL("file:///home/user/Documents/file.ts#header")), ".ts");
258
+ * ```
259
+ *
260
+ * @example Working with URLs
261
+ *
262
+ * Note: This function doesn't automatically strip hash and query parts from
263
+ * URLs. If your URL contains a hash or query, remove them before passing the
264
+ * URL to the function. This can be done by passing the URL to `new URL(url)`,
265
+ * and setting the `hash` and `search` properties to empty strings.
266
+ *
267
+ * ```ts
268
+ * import { extname } from "@std/path/posix/extname";
269
+ * import { assertEquals } from "@std/assert";
270
+ *
271
+ * assertEquals(extname("https://deno.land/std/path/mod.ts"), ".ts");
272
+ * assertEquals(extname("https://deno.land/std/path/mod.ts?a=b"), ".ts?a=b");
273
+ * assertEquals(extname("https://deno.land/std/path/mod.ts#header"), ".ts#header");
274
+ * ```
275
+ *
276
+ * @param path The path to get the extension from.
277
+ * @returns The extension (ex. for `file.ts` returns `.ts`).
278
+ */ function extname(path) {
279
+ if (path instanceof URL) {
280
+ path = fromFileUrl(path);
281
+ }
282
+ assertPath(path);
283
+ let startDot = -1;
284
+ let startPart = 0;
285
+ let end = -1;
286
+ let matchedSlash = true;
287
+ // Track the state of characters (if any) we see before our first dot and
288
+ // after any path separator we find
289
+ let preDotState = 0;
290
+ for(let i = path.length - 1; i >= 0; --i){
291
+ const code = path.charCodeAt(i);
292
+ if (isPosixPathSeparator(code)) {
293
+ // If we reached a path separator that was not part of a set of path
294
+ // separators at the end of the string, stop now
295
+ if (!matchedSlash) {
296
+ startPart = i + 1;
297
+ break;
298
+ }
299
+ continue;
300
+ }
301
+ if (end === -1) {
302
+ // We saw the first non-path separator, mark this as the end of our
303
+ // extension
304
+ matchedSlash = false;
305
+ end = i + 1;
306
+ }
307
+ if (code === CHAR_DOT) {
308
+ // If this is our first dot, mark it as the start of our extension
309
+ if (startDot === -1) startDot = i;
310
+ else if (preDotState !== 1) preDotState = 1;
311
+ } else if (startDot !== -1) {
312
+ // We saw a non-dot and non-path separator before our dot, so we should
313
+ // have a good chance at having a non-empty extension
314
+ preDotState = -1;
315
+ }
316
+ }
317
+ if (startDot === -1 || end === -1 || // We saw a non-dot character immediately before the dot
318
+ preDotState === 0 || // The (right-most) trimmed path component is exactly '..'
319
+ preDotState === 1 && startDot === end - 1 && startDot === startPart + 1) {
320
+ return "";
321
+ }
322
+ return path.slice(startDot, end);
323
+ }
324
+
325
+ // Copyright 2018-2025 the Deno authors. MIT license.
326
+ // This module is browser compatible.
327
+ function _format(sep, pathObject) {
328
+ const dir = pathObject.dir || pathObject.root;
329
+ const base = pathObject.base || (pathObject.name ?? "") + (pathObject.ext ?? "");
330
+ if (!dir) return base;
331
+ if (base === sep) return dir;
332
+ if (dir === pathObject.root) return dir + base;
333
+ return dir + sep + base;
334
+ }
335
+ function assertArg$1(pathObject) {
336
+ if (pathObject === null || typeof pathObject !== "object") {
337
+ throw new TypeError(`The "pathObject" argument must be of type Object, received type "${typeof pathObject}"`);
338
+ }
339
+ }
340
+
341
+ // Copyright 2018-2025 the Deno authors. MIT license.
342
+ // This module is browser compatible.
343
+ /**
344
+ * Generate a path from `ParsedPath` object.
345
+ *
346
+ * @example Usage
347
+ * ```ts
348
+ * import { format } from "@std/path/posix/format";
349
+ * import { assertEquals } from "@std/assert";
350
+ *
351
+ * const path = format({
352
+ * root: "/",
353
+ * dir: "/path/dir",
354
+ * base: "file.txt",
355
+ * ext: ".txt",
356
+ * name: "file"
357
+ * });
358
+ * assertEquals(path, "/path/dir/file.txt");
359
+ * ```
360
+ *
361
+ * @param pathObject The path object to format.
362
+ * @returns The formatted path.
363
+ */ function format(pathObject) {
364
+ assertArg$1(pathObject);
365
+ return _format("/", pathObject);
366
+ }
367
+
368
+ // Copyright 2018-2025 the Deno authors. MIT license.
369
+ // This module is browser compatible.
370
+ /**
371
+ * Verifies whether provided path is absolute.
372
+ *
373
+ * @example Usage
374
+ * ```ts
375
+ * import { isAbsolute } from "@std/path/posix/is-absolute";
376
+ * import { assert, assertFalse } from "@std/assert";
377
+ *
378
+ * assert(isAbsolute("/home/user/Documents/"));
379
+ * assertFalse(isAbsolute("home/user/Documents/"));
380
+ * ```
381
+ *
382
+ * @param path The path to verify.
383
+ * @returns Whether the path is absolute.
384
+ */ function isAbsolute(path) {
385
+ assertPath(path);
386
+ return path.length > 0 && isPosixPathSeparator(path.charCodeAt(0));
387
+ }
388
+
389
+ // Copyright 2018-2025 the Deno authors. MIT license.
390
+ // This module is browser compatible.
391
+ function assertArg(path) {
392
+ assertPath(path);
393
+ if (path.length === 0) return ".";
394
+ }
395
+
396
+ // Copyright 2018-2025 the Deno authors. MIT license.
397
+ // Copyright the Browserify authors. MIT License.
398
+ // Ported from https://github.com/browserify/path-browserify/
399
+ // This module is browser compatible.
400
+ // Resolves . and .. elements in a path with directory names
401
+ function normalizeString(path, allowAboveRoot, separator, isPathSeparator) {
402
+ let res = "";
403
+ let lastSegmentLength = 0;
404
+ let lastSlash = -1;
405
+ let dots = 0;
406
+ let code;
407
+ for(let i = 0; i <= path.length; ++i){
408
+ if (i < path.length) code = path.charCodeAt(i);
409
+ else if (isPathSeparator(code)) break;
410
+ else code = CHAR_FORWARD_SLASH;
411
+ if (isPathSeparator(code)) {
412
+ if (lastSlash === i - 1 || dots === 1) ; else if (lastSlash !== i - 1 && dots === 2) {
413
+ if (res.length < 2 || lastSegmentLength !== 2 || res.charCodeAt(res.length - 1) !== CHAR_DOT || res.charCodeAt(res.length - 2) !== CHAR_DOT) {
414
+ if (res.length > 2) {
415
+ const lastSlashIndex = res.lastIndexOf(separator);
416
+ if (lastSlashIndex === -1) {
417
+ res = "";
418
+ lastSegmentLength = 0;
419
+ } else {
420
+ res = res.slice(0, lastSlashIndex);
421
+ lastSegmentLength = res.length - 1 - res.lastIndexOf(separator);
422
+ }
423
+ lastSlash = i;
424
+ dots = 0;
425
+ continue;
426
+ } else if (res.length === 2 || res.length === 1) {
427
+ res = "";
428
+ lastSegmentLength = 0;
429
+ lastSlash = i;
430
+ dots = 0;
431
+ continue;
432
+ }
433
+ }
434
+ if (allowAboveRoot) {
435
+ if (res.length > 0) res += `${separator}..`;
436
+ else res = "..";
437
+ lastSegmentLength = 2;
438
+ }
439
+ } else {
440
+ if (res.length > 0) res += separator + path.slice(lastSlash + 1, i);
441
+ else res = path.slice(lastSlash + 1, i);
442
+ lastSegmentLength = i - lastSlash - 1;
443
+ }
444
+ lastSlash = i;
445
+ dots = 0;
446
+ } else if (code === CHAR_DOT && dots !== -1) {
447
+ ++dots;
448
+ } else {
449
+ dots = -1;
450
+ }
451
+ }
452
+ return res;
453
+ }
454
+
455
+ // Copyright 2018-2025 the Deno authors. MIT license.
456
+ // This module is browser compatible.
457
+ /**
458
+ * Normalize the `path`, resolving `'..'` and `'.'` segments.
459
+ * Note that resolving these segments does not necessarily mean that all will be eliminated.
460
+ * A `'..'` at the top-level will be preserved, and an empty path is canonically `'.'`.
461
+ *
462
+ * @example Usage
463
+ * ```ts
464
+ * import { normalize } from "@std/path/posix/normalize";
465
+ * import { assertEquals } from "@std/assert";
466
+ *
467
+ * assertEquals(normalize("/foo/bar//baz/asdf/quux/.."), "/foo/bar/baz/asdf");
468
+ * assertEquals(normalize(new URL("file:///foo/bar//baz/asdf/quux/..")), "/foo/bar/baz/asdf/");
469
+ * ```
470
+ *
471
+ * @example Working with URLs
472
+ *
473
+ * Note: This function will remove the double slashes from a URL's scheme.
474
+ * Hence, do not pass a full URL to this function. Instead, pass the pathname of
475
+ * the URL.
476
+ *
477
+ * ```ts
478
+ * import { normalize } from "@std/path/posix/normalize";
479
+ * import { assertEquals } from "@std/assert";
480
+ *
481
+ * const url = new URL("https://deno.land");
482
+ * url.pathname = normalize("//std//assert//.//mod.ts");
483
+ * assertEquals(url.href, "https://deno.land/std/assert/mod.ts");
484
+ *
485
+ * url.pathname = normalize("std/assert/../async/retry.ts");
486
+ * assertEquals(url.href, "https://deno.land/std/async/retry.ts");
487
+ * ```
488
+ *
489
+ * @param path The path to normalize.
490
+ * @returns The normalized path.
491
+ */ function normalize(path) {
492
+ if (path instanceof URL) {
493
+ path = fromFileUrl(path);
494
+ }
495
+ assertArg(path);
496
+ const isAbsolute = isPosixPathSeparator(path.charCodeAt(0));
497
+ const trailingSeparator = isPosixPathSeparator(path.charCodeAt(path.length - 1));
498
+ // Normalize the path
499
+ path = normalizeString(path, !isAbsolute, "/", isPosixPathSeparator);
500
+ if (path.length === 0 && !isAbsolute) path = ".";
501
+ if (path.length > 0 && trailingSeparator) path += "/";
502
+ if (isAbsolute) return `/${path}`;
503
+ return path;
504
+ }
505
+
506
+ // Copyright 2018-2025 the Deno authors. MIT license.
507
+ // This module is browser compatible.
508
+ /**
509
+ * Join all given a sequence of `paths`,then normalizes the resulting path.
510
+ *
511
+ * @example Usage
512
+ * ```ts
513
+ * import { join } from "@std/path/posix/join";
514
+ * import { assertEquals } from "@std/assert";
515
+ *
516
+ * assertEquals(join("/foo", "bar", "baz/asdf", "quux", ".."), "/foo/bar/baz/asdf");
517
+ * assertEquals(join(new URL("file:///foo"), "bar", "baz/asdf", "quux", ".."), "/foo/bar/baz/asdf");
518
+ * ```
519
+ *
520
+ * @example Working with URLs
521
+ * ```ts
522
+ * import { join } from "@std/path/posix/join";
523
+ * import { assertEquals } from "@std/assert";
524
+ *
525
+ * const url = new URL("https://deno.land");
526
+ * url.pathname = join("std", "path", "mod.ts");
527
+ * assertEquals(url.href, "https://deno.land/std/path/mod.ts");
528
+ *
529
+ * url.pathname = join("//std", "path/", "/mod.ts");
530
+ * assertEquals(url.href, "https://deno.land/std/path/mod.ts");
531
+ * ```
532
+ *
533
+ * @param path The path to join. This can be string or file URL.
534
+ * @param paths The paths to join.
535
+ * @returns The joined path.
536
+ */ function join(path, ...paths) {
537
+ if (path === undefined) return ".";
538
+ if (path instanceof URL) {
539
+ path = fromFileUrl(path);
540
+ }
541
+ paths = path ? [
542
+ path,
543
+ ...paths
544
+ ] : paths;
545
+ paths.forEach((path)=>assertPath(path));
546
+ const joined = paths.filter((path)=>path.length > 0).join("/");
547
+ return joined === "" ? "." : normalize(joined);
548
+ }
549
+
550
+ // Copyright 2018-2025 the Deno authors. MIT license.
551
+ // This module is browser compatible.
552
+ /**
553
+ * Return a `ParsedPath` object of the `path`.
554
+ *
555
+ * @example Usage
556
+ * ```ts
557
+ * import { parse } from "@std/path/posix/parse";
558
+ * import { assertEquals } from "@std/assert";
559
+ *
560
+ * const path = parse("/home/user/file.txt");
561
+ * assertEquals(path, {
562
+ * root: "/",
563
+ * dir: "/home/user",
564
+ * base: "file.txt",
565
+ * ext: ".txt",
566
+ * name: "file"
567
+ * });
568
+ * ```
569
+ *
570
+ * @param path The path to parse.
571
+ * @returns The parsed path object.
572
+ */ function parse(path) {
573
+ assertPath(path);
574
+ const ret = {
575
+ root: "",
576
+ dir: "",
577
+ base: "",
578
+ ext: "",
579
+ name: ""
580
+ };
581
+ if (path.length === 0) return ret;
582
+ const isAbsolute = isPosixPathSeparator(path.charCodeAt(0));
583
+ let start;
584
+ if (isAbsolute) {
585
+ ret.root = "/";
586
+ start = 1;
587
+ } else {
588
+ start = 0;
589
+ }
590
+ let startDot = -1;
591
+ let startPart = 0;
592
+ let end = -1;
593
+ let matchedSlash = true;
594
+ let i = path.length - 1;
595
+ // Track the state of characters (if any) we see before our first dot and
596
+ // after any path separator we find
597
+ let preDotState = 0;
598
+ // Get non-dir info
599
+ for(; i >= start; --i){
600
+ const code = path.charCodeAt(i);
601
+ if (isPosixPathSeparator(code)) {
602
+ // If we reached a path separator that was not part of a set of path
603
+ // separators at the end of the string, stop now
604
+ if (!matchedSlash) {
605
+ startPart = i + 1;
606
+ break;
607
+ }
608
+ continue;
609
+ }
610
+ if (end === -1) {
611
+ // We saw the first non-path separator, mark this as the end of our
612
+ // extension
613
+ matchedSlash = false;
614
+ end = i + 1;
615
+ }
616
+ if (code === CHAR_DOT) {
617
+ // If this is our first dot, mark it as the start of our extension
618
+ if (startDot === -1) startDot = i;
619
+ else if (preDotState !== 1) preDotState = 1;
620
+ } else if (startDot !== -1) {
621
+ // We saw a non-dot and non-path separator before our dot, so we should
622
+ // have a good chance at having a non-empty extension
623
+ preDotState = -1;
624
+ }
625
+ }
626
+ if (startDot === -1 || end === -1 || // We saw a non-dot character immediately before the dot
627
+ preDotState === 0 || // The (right-most) trimmed path component is exactly '..'
628
+ preDotState === 1 && startDot === end - 1 && startDot === startPart + 1) {
629
+ if (end !== -1) {
630
+ if (startPart === 0 && isAbsolute) {
631
+ ret.base = ret.name = path.slice(1, end);
632
+ } else {
633
+ ret.base = ret.name = path.slice(startPart, end);
634
+ }
635
+ }
636
+ // Fallback to '/' in case there is no basename
637
+ ret.base = ret.base || "/";
638
+ } else {
639
+ if (startPart === 0 && isAbsolute) {
640
+ ret.name = path.slice(1, startDot);
641
+ ret.base = path.slice(1, end);
642
+ } else {
643
+ ret.name = path.slice(startPart, startDot);
644
+ ret.base = path.slice(startPart, end);
645
+ }
646
+ ret.ext = path.slice(startDot, end);
647
+ }
648
+ if (startPart > 0) {
649
+ ret.dir = stripTrailingSeparators(path.slice(0, startPart - 1), isPosixPathSeparator);
650
+ } else if (isAbsolute) ret.dir = "/";
651
+ return ret;
652
+ }
653
+
654
+ // Copyright 2018-2025 the Deno authors. MIT license.
655
+ // This module is browser compatible.
656
+ /**
657
+ * Resolves path segments into a `path`.
658
+ *
659
+ * @example Usage
660
+ * ```ts
661
+ * import { resolve } from "@std/path/posix/resolve";
662
+ * import { assertEquals } from "@std/assert";
663
+ *
664
+ * const path = resolve("/foo", "bar", "baz/asdf", "quux", "..");
665
+ * assertEquals(path, "/foo/bar/baz/asdf");
666
+ * ```
667
+ *
668
+ * @param pathSegments The path segments to resolve.
669
+ * @returns The resolved path.
670
+ */ function resolve(...pathSegments) {
671
+ let resolvedPath = "";
672
+ let resolvedAbsolute = false;
673
+ for(let i = pathSegments.length - 1; i >= -1 && !resolvedAbsolute; i--){
674
+ let path;
675
+ if (i >= 0) path = pathSegments[i];
676
+ else {
677
+ // deno-lint-ignore no-explicit-any
678
+ const { Deno } = globalThis;
679
+ if (typeof Deno?.cwd !== "function") {
680
+ throw new TypeError("Resolved a relative path without a current working directory (CWD)");
681
+ }
682
+ path = Deno.cwd();
683
+ }
684
+ assertPath(path);
685
+ // Skip empty entries
686
+ if (path.length === 0) {
687
+ continue;
688
+ }
689
+ resolvedPath = `${path}/${resolvedPath}`;
690
+ resolvedAbsolute = isPosixPathSeparator(path.charCodeAt(0));
691
+ }
692
+ // At this point the path should be resolved to a full absolute path, but
693
+ // handle relative paths to be safe (might happen when Deno.cwd() fails)
694
+ // Normalize the path
695
+ resolvedPath = normalizeString(resolvedPath, !resolvedAbsolute, "/", isPosixPathSeparator);
696
+ if (resolvedAbsolute) {
697
+ if (resolvedPath.length > 0) return `/${resolvedPath}`;
698
+ else return "/";
699
+ } else if (resolvedPath.length > 0) return resolvedPath;
700
+ else return ".";
701
+ }
702
+
703
+ // Copyright 2018-2025 the Deno authors. MIT license.
704
+ // This module is browser compatible.
705
+ function assertArgs(from, to) {
706
+ assertPath(from);
707
+ assertPath(to);
708
+ if (from === to) return "";
709
+ }
710
+
711
+ // Copyright 2018-2025 the Deno authors. MIT license.
712
+ // This module is browser compatible.
713
+ /**
714
+ * Return the relative path from `from` to `to` based on current working directory.
715
+ *
716
+ * If `from` and `to` are the same, return an empty string.
717
+ *
718
+ * @example Usage
719
+ * ```ts
720
+ * import { relative } from "@std/path/posix/relative";
721
+ * import { assertEquals } from "@std/assert";
722
+ *
723
+ * const path = relative("/data/orandea/test/aaa", "/data/orandea/impl/bbb");
724
+ * assertEquals(path, "../../impl/bbb");
725
+ * ```
726
+ *
727
+ * @param from The path to start from.
728
+ * @param to The path to reach.
729
+ * @returns The relative path.
730
+ */ function relative(from, to) {
731
+ assertArgs(from, to);
732
+ from = resolve(from);
733
+ to = resolve(to);
734
+ if (from === to) return "";
735
+ // Trim any leading backslashes
736
+ let fromStart = 1;
737
+ const fromEnd = from.length;
738
+ for(; fromStart < fromEnd; ++fromStart){
739
+ if (!isPosixPathSeparator(from.charCodeAt(fromStart))) break;
740
+ }
741
+ const fromLen = fromEnd - fromStart;
742
+ // Trim any leading backslashes
743
+ let toStart = 1;
744
+ const toEnd = to.length;
745
+ for(; toStart < toEnd; ++toStart){
746
+ if (!isPosixPathSeparator(to.charCodeAt(toStart))) break;
747
+ }
748
+ const toLen = toEnd - toStart;
749
+ // Compare paths to find the longest common path from root
750
+ const length = fromLen < toLen ? fromLen : toLen;
751
+ let lastCommonSep = -1;
752
+ let i = 0;
753
+ for(; i <= length; ++i){
754
+ if (i === length) {
755
+ if (toLen > length) {
756
+ if (isPosixPathSeparator(to.charCodeAt(toStart + i))) {
757
+ // We get here if `from` is the exact base path for `to`.
758
+ // For example: from='/foo/bar'; to='/foo/bar/baz'
759
+ return to.slice(toStart + i + 1);
760
+ } else if (i === 0) {
761
+ // We get here if `from` is the root
762
+ // For example: from='/'; to='/foo'
763
+ return to.slice(toStart + i);
764
+ }
765
+ } else if (fromLen > length) {
766
+ if (isPosixPathSeparator(from.charCodeAt(fromStart + i))) {
767
+ // We get here if `to` is the exact base path for `from`.
768
+ // For example: from='/foo/bar/baz'; to='/foo/bar'
769
+ lastCommonSep = i;
770
+ } else if (i === 0) {
771
+ // We get here if `to` is the root.
772
+ // For example: from='/foo'; to='/'
773
+ lastCommonSep = 0;
774
+ }
775
+ }
776
+ break;
777
+ }
778
+ const fromCode = from.charCodeAt(fromStart + i);
779
+ const toCode = to.charCodeAt(toStart + i);
780
+ if (fromCode !== toCode) break;
781
+ else if (isPosixPathSeparator(fromCode)) lastCommonSep = i;
782
+ }
783
+ let out = "";
784
+ // Generate the relative path based on the path difference between `to`
785
+ // and `from`
786
+ for(i = fromStart + lastCommonSep + 1; i <= fromEnd; ++i){
787
+ if (i === fromEnd || isPosixPathSeparator(from.charCodeAt(i))) {
788
+ if (out.length === 0) out += "..";
789
+ else out += "/..";
790
+ }
791
+ }
792
+ // Lastly, append the rest of the destination (`to`) path that comes after
793
+ // the common path parts
794
+ if (out.length > 0) return out + to.slice(toStart + lastCommonSep);
795
+ else {
796
+ toStart += lastCommonSep;
797
+ if (isPosixPathSeparator(to.charCodeAt(toStart))) ++toStart;
798
+ return to.slice(toStart);
799
+ }
800
+ }
801
+
802
+ // Copyright 2018-2025 the Deno authors. MIT license.
803
+ // This module is browser compatible.
804
+ const WHITESPACE_ENCODINGS = {
805
+ "\u0009": "%09",
806
+ "\u000A": "%0A",
807
+ "\u000B": "%0B",
808
+ "\u000C": "%0C",
809
+ "\u000D": "%0D",
810
+ "\u0020": "%20"
811
+ };
812
+ function encodeWhitespace(string) {
813
+ return string.replaceAll(/[\s]/g, (c)=>{
814
+ return WHITESPACE_ENCODINGS[c] ?? c;
815
+ });
816
+ }
817
+
818
+ // Copyright 2018-2025 the Deno authors. MIT license.
819
+ // This module is browser compatible.
820
+ /**
821
+ * Converts a path string to a file URL.
822
+ *
823
+ * @example Usage
824
+ * ```ts
825
+ * import { toFileUrl } from "@std/path/posix/to-file-url";
826
+ * import { assertEquals } from "@std/assert";
827
+ *
828
+ * assertEquals(toFileUrl("/home/foo"), new URL("file:///home/foo"));
829
+ * assertEquals(toFileUrl("/home/foo bar"), new URL("file:///home/foo%20bar"));
830
+ * ```
831
+ *
832
+ * @param path The path to convert.
833
+ * @returns The file URL.
834
+ */ function toFileUrl(path) {
835
+ if (!isAbsolute(path)) {
836
+ throw new TypeError(`Path must be absolute: received "${path}"`);
837
+ }
838
+ const url = new URL("file:///");
839
+ url.pathname = encodeWhitespace(path.replace(/%/g, "%25").replace(/\\/g, "%5C"));
840
+ return url;
841
+ }
842
+
843
+ // Copyright 2018-2025 the Deno authors. MIT license.
844
+ // This module is browser compatible.
845
+ /**
846
+ * Converts a path to a namespaced path. This function returns the path as is on posix.
847
+ *
848
+ * @example Usage
849
+ * ```ts
850
+ * import { toNamespacedPath } from "@std/path/posix/to-namespaced-path";
851
+ * import { assertEquals } from "@std/assert";
852
+ *
853
+ * assertEquals(toNamespacedPath("/home/foo"), "/home/foo");
854
+ * ```
855
+ *
856
+ * @param path The path.
857
+ * @returns The namespaced path.
858
+ */ function toNamespacedPath(path) {
859
+ // Non-op on posix systems
860
+ return path;
861
+ }
862
+
863
+ // Copyright 2018-2025 the Deno authors. MIT license.
864
+ // This module is browser compatible.
865
+ function common$1(paths, sep) {
866
+ const [first = "", ...remaining] = paths;
867
+ const parts = first.split(sep);
868
+ let endOfPrefix = parts.length;
869
+ let append = "";
870
+ for (const path of remaining){
871
+ const compare = path.split(sep);
872
+ if (compare.length <= endOfPrefix) {
873
+ endOfPrefix = compare.length;
874
+ append = "";
875
+ }
876
+ for(let i = 0; i < endOfPrefix; i++){
877
+ if (compare[i] !== parts[i]) {
878
+ endOfPrefix = i;
879
+ append = i === 0 ? "" : sep;
880
+ break;
881
+ }
882
+ }
883
+ }
884
+ return parts.slice(0, endOfPrefix).join(sep) + append;
885
+ }
886
+
887
+ // Copyright 2018-2025 the Deno authors. MIT license.
888
+ // This module is browser compatible.
889
+ /** Determines the common path from a set of paths for POSIX systems.
890
+ *
891
+ * @example Usage
892
+ * ```ts
893
+ * import { common } from "@std/path/posix/common";
894
+ * import { assertEquals } from "@std/assert";
895
+ *
896
+ * const path = common([
897
+ * "./deno/std/path/mod.ts",
898
+ * "./deno/std/fs/mod.ts",
899
+ * ]);
900
+ * assertEquals(path, "./deno/std/");
901
+ * ```
902
+ *
903
+ * @param paths The paths to compare.
904
+ * @returns The common path.
905
+ */ function common(paths) {
906
+ return common$1(paths, SEPARATOR);
907
+ }
908
+
909
+ // Copyright 2018-2025 the Deno authors. MIT license.
910
+ // This module is browser compatible.
911
+ /**
912
+ * Options for {@linkcode globToRegExp}, {@linkcode joinGlobs},
913
+ * {@linkcode normalizeGlob} and {@linkcode expandGlob}.
914
+ */ const REG_EXP_ESCAPE_CHARS = [
915
+ "!",
916
+ "$",
917
+ "(",
918
+ ")",
919
+ "*",
920
+ "+",
921
+ ".",
922
+ "=",
923
+ "?",
924
+ "[",
925
+ "\\",
926
+ "^",
927
+ "{",
928
+ "|"
929
+ ];
930
+ const RANGE_ESCAPE_CHARS = [
931
+ "-",
932
+ "\\",
933
+ "]"
934
+ ];
935
+ function _globToRegExp(c, glob, { extended = true, globstar: globstarOption = true, // os = osType,
936
+ caseInsensitive = false } = {}) {
937
+ if (glob === "") {
938
+ return /(?!)/;
939
+ }
940
+ // Remove trailing separators.
941
+ let newLength = glob.length;
942
+ for(; newLength > 1 && c.seps.includes(glob[newLength - 1]); newLength--);
943
+ glob = glob.slice(0, newLength);
944
+ let regExpString = "";
945
+ // Terminates correctly. Trust that `j` is incremented every iteration.
946
+ for(let j = 0; j < glob.length;){
947
+ let segment = "";
948
+ const groupStack = [];
949
+ let inRange = false;
950
+ let inEscape = false;
951
+ let endsWithSep = false;
952
+ let i = j;
953
+ // Terminates with `i` at the non-inclusive end of the current segment.
954
+ for(; i < glob.length && !(c.seps.includes(glob[i]) && groupStack.length === 0); i++){
955
+ if (inEscape) {
956
+ inEscape = false;
957
+ const escapeChars = inRange ? RANGE_ESCAPE_CHARS : REG_EXP_ESCAPE_CHARS;
958
+ segment += escapeChars.includes(glob[i]) ? `\\${glob[i]}` : glob[i];
959
+ continue;
960
+ }
961
+ if (glob[i] === c.escapePrefix) {
962
+ inEscape = true;
963
+ continue;
964
+ }
965
+ if (glob[i] === "[") {
966
+ if (!inRange) {
967
+ inRange = true;
968
+ segment += "[";
969
+ if (glob[i + 1] === "!") {
970
+ i++;
971
+ segment += "^";
972
+ } else if (glob[i + 1] === "^") {
973
+ i++;
974
+ segment += "\\^";
975
+ }
976
+ continue;
977
+ } else if (glob[i + 1] === ":") {
978
+ let k = i + 1;
979
+ let value = "";
980
+ while(glob[k + 1] !== undefined && glob[k + 1] !== ":"){
981
+ value += glob[k + 1];
982
+ k++;
983
+ }
984
+ if (glob[k + 1] === ":" && glob[k + 2] === "]") {
985
+ i = k + 2;
986
+ if (value === "alnum") segment += "\\dA-Za-z";
987
+ else if (value === "alpha") segment += "A-Za-z";
988
+ else if (value === "ascii") segment += "\x00-\x7F";
989
+ else if (value === "blank") segment += "\t ";
990
+ else if (value === "cntrl") segment += "\x00-\x1F\x7F";
991
+ else if (value === "digit") segment += "\\d";
992
+ else if (value === "graph") segment += "\x21-\x7E";
993
+ else if (value === "lower") segment += "a-z";
994
+ else if (value === "print") segment += "\x20-\x7E";
995
+ else if (value === "punct") {
996
+ segment += "!\"#$%&'()*+,\\-./:;<=>?@[\\\\\\]^_‘{|}~";
997
+ } else if (value === "space") segment += "\\s\v";
998
+ else if (value === "upper") segment += "A-Z";
999
+ else if (value === "word") segment += "\\w";
1000
+ else if (value === "xdigit") segment += "\\dA-Fa-f";
1001
+ continue;
1002
+ }
1003
+ }
1004
+ }
1005
+ if (glob[i] === "]" && inRange) {
1006
+ inRange = false;
1007
+ segment += "]";
1008
+ continue;
1009
+ }
1010
+ if (inRange) {
1011
+ segment += glob[i];
1012
+ continue;
1013
+ }
1014
+ if (glob[i] === ")" && groupStack.length > 0 && groupStack[groupStack.length - 1] !== "BRACE") {
1015
+ segment += ")";
1016
+ const type = groupStack.pop();
1017
+ if (type === "!") {
1018
+ segment += c.wildcard;
1019
+ } else if (type !== "@") {
1020
+ segment += type;
1021
+ }
1022
+ continue;
1023
+ }
1024
+ if (glob[i] === "|" && groupStack.length > 0 && groupStack[groupStack.length - 1] !== "BRACE") {
1025
+ segment += "|";
1026
+ continue;
1027
+ }
1028
+ if (glob[i] === "+" && extended && glob[i + 1] === "(") {
1029
+ i++;
1030
+ groupStack.push("+");
1031
+ segment += "(?:";
1032
+ continue;
1033
+ }
1034
+ if (glob[i] === "@" && extended && glob[i + 1] === "(") {
1035
+ i++;
1036
+ groupStack.push("@");
1037
+ segment += "(?:";
1038
+ continue;
1039
+ }
1040
+ if (glob[i] === "?") {
1041
+ if (extended && glob[i + 1] === "(") {
1042
+ i++;
1043
+ groupStack.push("?");
1044
+ segment += "(?:";
1045
+ } else {
1046
+ segment += ".";
1047
+ }
1048
+ continue;
1049
+ }
1050
+ if (glob[i] === "!" && extended && glob[i + 1] === "(") {
1051
+ i++;
1052
+ groupStack.push("!");
1053
+ segment += "(?!";
1054
+ continue;
1055
+ }
1056
+ if (glob[i] === "{") {
1057
+ groupStack.push("BRACE");
1058
+ segment += "(?:";
1059
+ continue;
1060
+ }
1061
+ if (glob[i] === "}" && groupStack[groupStack.length - 1] === "BRACE") {
1062
+ groupStack.pop();
1063
+ segment += ")";
1064
+ continue;
1065
+ }
1066
+ if (glob[i] === "," && groupStack[groupStack.length - 1] === "BRACE") {
1067
+ segment += "|";
1068
+ continue;
1069
+ }
1070
+ if (glob[i] === "*") {
1071
+ if (extended && glob[i + 1] === "(") {
1072
+ i++;
1073
+ groupStack.push("*");
1074
+ segment += "(?:";
1075
+ } else {
1076
+ const prevChar = glob[i - 1];
1077
+ let numStars = 1;
1078
+ while(glob[i + 1] === "*"){
1079
+ i++;
1080
+ numStars++;
1081
+ }
1082
+ const nextChar = glob[i + 1];
1083
+ if (globstarOption && numStars === 2 && [
1084
+ ...c.seps,
1085
+ undefined
1086
+ ].includes(prevChar) && [
1087
+ ...c.seps,
1088
+ undefined
1089
+ ].includes(nextChar)) {
1090
+ segment += c.globstar;
1091
+ endsWithSep = true;
1092
+ } else {
1093
+ segment += c.wildcard;
1094
+ }
1095
+ }
1096
+ continue;
1097
+ }
1098
+ segment += REG_EXP_ESCAPE_CHARS.includes(glob[i]) ? `\\${glob[i]}` : glob[i];
1099
+ }
1100
+ // Check for unclosed groups or a dangling backslash.
1101
+ if (groupStack.length > 0 || inRange || inEscape) {
1102
+ // Parse failure. Take all characters from this segment literally.
1103
+ segment = "";
1104
+ for (const c of glob.slice(j, i)){
1105
+ segment += REG_EXP_ESCAPE_CHARS.includes(c) ? `\\${c}` : c;
1106
+ endsWithSep = false;
1107
+ }
1108
+ }
1109
+ regExpString += segment;
1110
+ if (!endsWithSep) {
1111
+ regExpString += i < glob.length ? c.sep : c.sepMaybe;
1112
+ endsWithSep = true;
1113
+ }
1114
+ // Terminates with `i` at the start of the next segment.
1115
+ while(c.seps.includes(glob[i]))i++;
1116
+ j = i;
1117
+ }
1118
+ regExpString = `^${regExpString}$`;
1119
+ return new RegExp(regExpString, caseInsensitive ? "i" : "");
1120
+ }
1121
+
1122
+ // Copyright 2018-2025 the Deno authors. MIT license.
1123
+ // This module is browser compatible.
1124
+ const constants = {
1125
+ sep: "/+",
1126
+ sepMaybe: "/*",
1127
+ seps: [
1128
+ "/"
1129
+ ],
1130
+ globstar: "(?:[^/]*(?:/|$)+)*",
1131
+ wildcard: "[^/]*",
1132
+ escapePrefix: "\\"
1133
+ };
1134
+ /** Convert a glob string to a regular expression.
1135
+ *
1136
+ * Tries to match bash glob expansion as closely as possible.
1137
+ *
1138
+ * Basic glob syntax:
1139
+ * - `*` - Matches everything without leaving the path segment.
1140
+ * - `?` - Matches any single character.
1141
+ * - `{foo,bar}` - Matches `foo` or `bar`.
1142
+ * - `[abcd]` - Matches `a`, `b`, `c` or `d`.
1143
+ * - `[a-d]` - Matches `a`, `b`, `c` or `d`.
1144
+ * - `[!abcd]` - Matches any single character besides `a`, `b`, `c` or `d`.
1145
+ * - `[[:<class>:]]` - Matches any character belonging to `<class>`.
1146
+ * - `[[:alnum:]]` - Matches any digit or letter.
1147
+ * - `[[:digit:]abc]` - Matches any digit, `a`, `b` or `c`.
1148
+ * - See https://facelessuser.github.io/wcmatch/glob/#posix-character-classes
1149
+ * for a complete list of supported character classes.
1150
+ * - `\` - Escapes the next character for an `os` other than `"windows"`.
1151
+ * - \` - Escapes the next character for `os` set to `"windows"`.
1152
+ * - `/` - Path separator.
1153
+ * - `\` - Additional path separator only for `os` set to `"windows"`.
1154
+ *
1155
+ * Extended syntax:
1156
+ * - Requires `{ extended: true }`.
1157
+ * - `?(foo|bar)` - Matches 0 or 1 instance of `{foo,bar}`.
1158
+ * - `@(foo|bar)` - Matches 1 instance of `{foo,bar}`. They behave the same.
1159
+ * - `*(foo|bar)` - Matches _n_ instances of `{foo,bar}`.
1160
+ * - `+(foo|bar)` - Matches _n > 0_ instances of `{foo,bar}`.
1161
+ * - `!(foo|bar)` - Matches anything other than `{foo,bar}`.
1162
+ * - See https://www.linuxjournal.com/content/bash-extended-globbing.
1163
+ *
1164
+ * Globstar syntax:
1165
+ * - Requires `{ globstar: true }`.
1166
+ * - `**` - Matches any number of any path segments.
1167
+ * - Must comprise its entire path segment in the provided glob.
1168
+ * - See https://www.linuxjournal.com/content/globstar-new-bash-globbing-option.
1169
+ *
1170
+ * Note the following properties:
1171
+ * - The generated `RegExp` is anchored at both start and end.
1172
+ * - Repeating and trailing separators are tolerated. Trailing separators in the
1173
+ * provided glob have no meaning and are discarded.
1174
+ * - Absolute globs will only match absolute paths, etc.
1175
+ * - Empty globs will match nothing.
1176
+ * - Any special glob syntax must be contained to one path segment. For example,
1177
+ * `?(foo|bar/baz)` is invalid. The separator will take precedence and the
1178
+ * first segment ends with an unclosed group.
1179
+ * - If a path segment ends with unclosed groups or a dangling escape prefix, a
1180
+ * parse error has occurred. Every character for that segment is taken
1181
+ * literally in this event.
1182
+ *
1183
+ * Limitations:
1184
+ * - A negative group like `!(foo|bar)` will wrongly be converted to a negative
1185
+ * look-ahead followed by a wildcard. This means that `!(foo).js` will wrongly
1186
+ * fail to match `foobar.js`, even though `foobar` is not `foo`. Effectively,
1187
+ * `!(foo|bar)` is treated like `!(@(foo|bar)*)`. This will work correctly if
1188
+ * the group occurs not nested at the end of the segment.
1189
+ *
1190
+ * @example Usage
1191
+ * ```ts
1192
+ * import { globToRegExp } from "@std/path/posix/glob-to-regexp";
1193
+ * import { assertEquals } from "@std/assert";
1194
+ *
1195
+ * assertEquals(globToRegExp("*.js"), /^[^/]*\.js\/*$/);
1196
+ * ```
1197
+ *
1198
+ * @param glob Glob string to convert.
1199
+ * @param options Conversion options.
1200
+ * @returns The regular expression equivalent to the glob.
1201
+ */ function globToRegExp(glob, options = {}) {
1202
+ return _globToRegExp(constants, glob, options);
1203
+ }
1204
+
1205
+ // Copyright 2018-2025 the Deno authors. MIT license.
1206
+ // This module is browser compatible.
1207
+ /**
1208
+ * Test whether the given string is a glob.
1209
+ *
1210
+ * @example Usage
1211
+ * ```ts
1212
+ * import { isGlob } from "@std/path/is-glob";
1213
+ * import { assert } from "@std/assert";
1214
+ *
1215
+ * assert(!isGlob("foo/bar/../baz"));
1216
+ * assert(isGlob("foo/*ar/../baz"));
1217
+ * ```
1218
+ *
1219
+ * @param str String to test.
1220
+ * @returns `true` if the given string is a glob, otherwise `false`
1221
+ */ function isGlob(str) {
1222
+ const chars = {
1223
+ "{": "}",
1224
+ "(": ")",
1225
+ "[": "]"
1226
+ };
1227
+ const regex = /\\(.)|(^!|\*|\?|[\].+)]\?|\[[^[\\\]]+\]|\{[^{\\}]+\}|\(\?[:!=][^\\)]+\)|\([^(|]+\|[^\\)]+\)|@\([^)]+\))/;
1228
+ if (str === "") {
1229
+ return false;
1230
+ }
1231
+ let match;
1232
+ while(match = regex.exec(str)){
1233
+ if (match[2]) return true;
1234
+ let idx = match.index + match[0].length;
1235
+ // if an open bracket/brace/paren is escaped,
1236
+ // set the index to the next closing character
1237
+ const open = match[1];
1238
+ const close = open ? chars[open] : null;
1239
+ if (open && close) {
1240
+ const n = str.indexOf(close, idx);
1241
+ if (n !== -1) {
1242
+ idx = n + 1;
1243
+ }
1244
+ }
1245
+ str = str.slice(idx);
1246
+ }
1247
+ return false;
1248
+ }
1249
+
1250
+ // Copyright 2018-2025 the Deno authors. MIT license.
1251
+ // This module is browser compatible.
1252
+ /**
1253
+ * Like normalize(), but doesn't collapse "**\/.." when `globstar` is true.
1254
+ *
1255
+ * @example Usage
1256
+ * ```ts
1257
+ * import { normalizeGlob } from "@std/path/posix/normalize-glob";
1258
+ * import { assertEquals } from "@std/assert";
1259
+ *
1260
+ * const path = normalizeGlob("foo/bar/../*", { globstar: true });
1261
+ * assertEquals(path, "foo/*");
1262
+ * ```
1263
+ *
1264
+ * @param glob The glob to normalize.
1265
+ * @param options The options to use.
1266
+ * @returns The normalized path.
1267
+ */ function normalizeGlob(glob, options = {}) {
1268
+ const { globstar = false } = options;
1269
+ if (glob.match(/\0/g)) {
1270
+ throw new Error(`Glob contains invalid characters: "${glob}"`);
1271
+ }
1272
+ if (!globstar) {
1273
+ return normalize(glob);
1274
+ }
1275
+ const s = SEPARATOR_PATTERN.source;
1276
+ const badParentPattern = new RegExp(`(?<=(${s}|^)\\*\\*${s})\\.\\.(?=${s}|$)`, "g");
1277
+ return normalize(glob.replace(badParentPattern, "\0")).replace(/\0/g, "..");
1278
+ }
1279
+
1280
+ // Copyright 2018-2025 the Deno authors. MIT license.
1281
+ // This module is browser compatible.
1282
+ /**
1283
+ * Like join(), but doesn't collapse "**\/.." when `globstar` is true.
1284
+ *
1285
+ * @example Usage
1286
+ * ```ts
1287
+ * import { joinGlobs } from "@std/path/posix/join-globs";
1288
+ * import { assertEquals } from "@std/assert";
1289
+ *
1290
+ * const path = joinGlobs(["foo", "bar", "**"], { globstar: true });
1291
+ * assertEquals(path, "foo/bar/**");
1292
+ * ```
1293
+ *
1294
+ * @param globs The globs to join.
1295
+ * @param options The options to use.
1296
+ * @returns The joined path.
1297
+ */ function joinGlobs(globs, options = {}) {
1298
+ const { globstar = false } = options;
1299
+ if (!globstar || globs.length === 0) {
1300
+ return join(...globs);
1301
+ }
1302
+ let joined;
1303
+ for (const glob of globs){
1304
+ const path = glob;
1305
+ if (path.length > 0) {
1306
+ if (!joined) joined = path;
1307
+ else joined += `${SEPARATOR}${path}`;
1308
+ }
1309
+ }
1310
+ if (!joined) return ".";
1311
+ return normalizeGlob(joined, {
1312
+ globstar
1313
+ });
1314
+ }
1315
+
1316
+ exports.DELIMITER = DELIMITER;
1317
+ exports.SEPARATOR = SEPARATOR;
1318
+ exports.SEPARATOR_PATTERN = SEPARATOR_PATTERN;
1319
+ exports.basename = basename;
1320
+ exports.common = common;
1321
+ exports.dirname = dirname;
1322
+ exports.extname = extname;
1323
+ exports.format = format;
1324
+ exports.fromFileUrl = fromFileUrl;
1325
+ exports.globToRegExp = globToRegExp;
1326
+ exports.isAbsolute = isAbsolute;
1327
+ exports.isGlob = isGlob;
1328
+ exports.join = join;
1329
+ exports.joinGlobs = joinGlobs;
1330
+ exports.normalize = normalize;
1331
+ exports.normalizeGlob = normalizeGlob;
1332
+ exports.parse = parse;
1333
+ exports.relative = relative;
1334
+ exports.resolve = resolve;
1335
+ exports.toFileUrl = toFileUrl;
1336
+ exports.toNamespacedPath = toNamespacedPath;