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