Skip to content

Commit 0b2e105

Browse files
committed
feat: no hankaku kana
1 parent afd2da2 commit 0b2e105

File tree

3 files changed

+103
-77
lines changed

3 files changed

+103
-77
lines changed

lib/textlint-rule-preset-vuejs-jp.js

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -37,9 +37,10 @@ module.exports = {
3737
"ja-no-space-between-full-width": presetJaSpacing["ja-no-space-between-full-width"],
3838
"ja-space-between-half-and-full-width": presetJaSpacing["ja-space-between-half-and-full-width"],
3939
"ja-space-around-code": presetJaSpacing["ja-space-around-code"],
40+
"no-hankaku-kana": moduleInterop(require("textlint-rule-no-hankaku-kana")),
41+
"no-invalid-control-character": moduleInterop(require("@textlint-rule/textlint-rule-no-invalid-control-character")),
4042
"no-mix-dearu-desumasu": moduleInterop(require("textlint-rule-no-mix-dearu-desumasu")),
4143
"no-nfd": moduleInterop(require("textlint-rule-no-nfd")),
42-
"no-invalid-control-character": moduleInterop(require("@textlint-rule/textlint-rule-no-invalid-control-character")),
4344
"no-zero-width-spaces": moduleInterop(require("textlint-rule-no-zero-width-spaces"))
4445
},
4546
rulesConfig: {
@@ -81,14 +82,15 @@ module.exports = {
8182
"before": true,
8283
"after": true
8384
},
85+
"no-hankaku-kana": true,
86+
"no-invalid-control-character": true,
8487
"no-mix-dearu-desumasu": {
8588
"preferInHeader": "",
8689
"preferInBody": "ですます",
8790
"preferInList": "ですます",
8891
"strict": true
8992
},
9093
"no-nfd": true,
91-
"no-invalid-control-character": true,
9294
"no-zero-width-spaces": true
9395
}
9496
};

package.json

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,11 +22,12 @@
2222
},
2323
"dependencies": {
2424
"@textlint-rule/textlint-rule-no-invalid-control-character": "^2.0.0",
25-
"@textlint/module-interop": "^12.0.0",
25+
"@textlint/module-interop": "^12.1.0",
26+
"textlint-rule-no-hankaku-kana": "^1.0.2",
2627
"textlint-rule-no-mix-dearu-desumasu": "^5.0.0",
2728
"textlint-rule-no-nfd": "^1.0.2",
2829
"textlint-rule-no-zero-width-spaces": "^1.0.1",
29-
"textlint-rule-preset-ja-spacing": "^2.1.3",
30+
"textlint-rule-preset-ja-spacing": "^2.2.0",
3031
"textlint-rule-preset-jtf-style": "^2.3.12"
3132
}
3233
}

yarn.lock

Lines changed: 96 additions & 73 deletions
Original file line numberDiff line numberDiff line change
@@ -3,9 +3,9 @@
33

44

55
"@babel/parser@^7.7.5":
6-
version "7.14.4"
7-
resolved "https://registry.yarnpkg.com/@babel/parser/-/parser-7.14.4.tgz#a5c560d6db6cd8e6ed342368dea8039232cbab18"
8-
integrity sha512-ArliyUsWDUqEGfWcmzpGUzNfLxTdTp6WU4IuP6QFSp9gGfWS6boxFCkJSJ/L4+RG8z/FnIU3WxCk6hPL9SSWeA==
6+
version "7.16.6"
7+
resolved "https://registry.yarnpkg.com/@babel/parser/-/parser-7.16.6.tgz#8f194828193e8fa79166f34a4b4e52f3e769a314"
8+
integrity sha512-Gr86ujcNuPDnNOY8mi383Hvi8IYrJVJYuf3XcuBM/Dgd+bINn/7tHqsj+tKkoreMbmGsFLsltI/JJd8fOFWGDQ==
99

1010
"@textlint-rule/textlint-rule-no-invalid-control-character@^2.0.0":
1111
version "2.0.0"
@@ -14,27 +14,15 @@
1414
dependencies:
1515
execall "^1.0.0"
1616

17-
"@textlint/ast-node-types@^4.4.3":
18-
version "4.4.3"
19-
resolved "https://registry.yarnpkg.com/@textlint/ast-node-types/-/ast-node-types-4.4.3.tgz#fdba16e8126cddc50f45433ce7f6c55e7829566c"
20-
integrity sha512-qi2jjgO6Tn3KNPGnm6B7p6QTEPvY95NFsIAaJuwbulur8iJUEenp1OnoUfiDaC/g2WPPEFkcfXpmnu8XEMFo2A==
21-
22-
"@textlint/module-interop@^12.0.0":
23-
version "12.0.0"
24-
resolved "https://registry.yarnpkg.com/@textlint/module-interop/-/module-interop-12.0.0.tgz#f6f4a513f7d58c25304fc1e6a544989a82565978"
25-
integrity sha512-WSuwd3pd2xYDCYqpA6NE8FwMZS4WJ2gZmsSCXBpOh3qJ/pHbmrfEaiwOpGQJA4RfXVp8Fy5KfaAQJIr+wox98A==
26-
27-
"@textlint/types@^1.5.5":
28-
version "1.5.5"
29-
resolved "https://registry.yarnpkg.com/@textlint/types/-/types-1.5.5.tgz#9c82dbcbf4e00116573f05c6739c6c8ec3b35304"
30-
integrity sha512-80P6fcqgsG9bP6JgR6W/E/oIx+71pplaicYCvvB4vMIeGk0OnWls4Q21kCpDYmq/C/ABtZ/Gy/Ov/8ExQPeQ7A==
31-
dependencies:
32-
"@textlint/ast-node-types" "^4.4.3"
17+
"@textlint/module-interop@^12.1.0":
18+
version "12.1.0"
19+
resolved "https://registry.yarnpkg.com/@textlint/module-interop/-/module-interop-12.1.0.tgz#fb8dc6ae7cded574ce04ed0e7854645c6486eff0"
20+
integrity sha512-J1VhFZ7lK1V3Ue7DCvZlGIFEuaongBCkir1XFL+f1yfhfQlgfM5TCp3OBBB6NhKPff8T6sPA9niBzMYr+NyKyA==
3321

3422
"@types/unist@^2.0.0":
35-
version "2.0.3"
36-
resolved "https://registry.yarnpkg.com/@types/unist/-/unist-2.0.3.tgz#9c088679876f374eb5983f150d4787aa6fb32d7e"
37-
integrity sha512-FvUupuM3rlRsRtCN+fDudtmytGO6iHJuuRKS1Ss0pG5z8oX0diNEw94UEL7hgDbpN94rgaK5R7sWm6RrSkZuAQ==
23+
version "2.0.6"
24+
resolved "https://registry.yarnpkg.com/@types/unist/-/unist-2.0.6.tgz#250a7b16c3b91f672a24552ec64678eeb1d3a08d"
25+
integrity sha512-PBjIUxZHOuj0R15/xuwJYjFi+KZdNFrehocChv4g5hu6aFroHue8m0lBP0POdK2nKzbw0cgV1mws8+V/JAcEkQ==
3826

3927
amp-create-callback@^1.0.0:
4028
version "1.0.1"
@@ -86,9 +74,9 @@ analyze-desumasu-dearu@^2.1.2:
8674
integrity sha1-nKoqWgYUbCBnn33J869Sfbb2j0E=
8775

8876
analyze-desumasu-dearu@^5.0.0:
89-
version "5.0.0"
90-
resolved "https://registry.yarnpkg.com/analyze-desumasu-dearu/-/analyze-desumasu-dearu-5.0.0.tgz#6989e449d5633c79f6b2598b6e810e929e013f36"
91-
integrity sha512-lqDmW0jmncEp1iNI+B0sr1LuadeO2dmDevHvWXoBev70Kekgi+XW3kZS41tpHoUvx3ZEBvDKgHceeYzKbJXx3Q==
77+
version "5.0.1"
78+
resolved "https://registry.yarnpkg.com/analyze-desumasu-dearu/-/analyze-desumasu-dearu-5.0.1.tgz#2310d076f683483ab4d4460fd2a21ad54fb2ad9d"
79+
integrity sha512-r7ruCOqvqKxAzcvDzj7PdZOstOZP9wtw/wSIoV3FmNxF16CvytxhJnHYbSRhUwqzR542OO/J9CDRWS3SSp4hZA==
9280
dependencies:
9381
kuromojin "^3.0.0"
9482

@@ -320,73 +308,86 @@ structured-source@^3.0.2:
320308
dependencies:
321309
boundary "^1.0.1"
322310

311+
textlint-rule-helper@^1.1.5:
312+
version "1.2.0"
313+
resolved "https://registry.yarnpkg.com/textlint-rule-helper/-/textlint-rule-helper-1.2.0.tgz#be68d47a5146b16dd116278c9aeb7bd35631ccda"
314+
integrity sha1-vmjUelFGsW3RFieMmut701YxzNo=
315+
dependencies:
316+
unist-util-visit "^1.1.0"
317+
323318
textlint-rule-helper@^2.0.0, textlint-rule-helper@^2.1.1, textlint-rule-helper@^2.2.0:
324-
version "2.2.0"
325-
resolved "https://registry.yarnpkg.com/textlint-rule-helper/-/textlint-rule-helper-2.2.0.tgz#30522ba904a03849d57ea3e5ebd5920027cd8da3"
326-
integrity sha512-9S5CsgQuQwPjM2wvr4JGdpkLf+pR9gOjedSQFa/Dkrbh+D9MXt1LIR4Jvx1RujKtt2nq42prmEX2q3xOxyUcIQ==
319+
version "2.2.1"
320+
resolved "https://registry.yarnpkg.com/textlint-rule-helper/-/textlint-rule-helper-2.2.1.tgz#fe223d4a6c492b9aaf6e8a33fca5ad8a02e4e027"
321+
integrity sha512-pdX3uNbFzQTgINamaBpEHRT/MgROHev5wCnQnUTXRLT5DaRjls0Rmpi5d1MPZG6HT5NKVL++Q2J0FUbh5shi3Q==
327322
dependencies:
328-
"@textlint/ast-node-types" "^4.4.3"
329-
"@textlint/types" "^1.5.5"
330323
structured-source "^3.0.2"
331-
unist-util-visit "^1.1.0"
324+
unist-util-visit "^2.0.3"
332325

333-
textlint-rule-ja-nakaguro-or-halfwidth-space-between-katakana@^2.1.3:
334-
version "2.1.3"
335-
resolved "https://registry.yarnpkg.com/textlint-rule-ja-nakaguro-or-halfwidth-space-between-katakana/-/textlint-rule-ja-nakaguro-or-halfwidth-space-between-katakana-2.1.3.tgz#08e0ae906e729b50231ca609077ecdf5bccb9055"
336-
integrity sha512-PpEuBPUMG9LZStG+mgNM7ixPTpHXjGa8M3L3X0vO+dOTnp77/6WFt78aBhisLnjVmk6PoL0u+vJVwIrj6LcM4w==
326+
textlint-rule-ja-nakaguro-or-halfwidth-space-between-katakana@^2.2.0:
327+
version "2.2.0"
328+
resolved "https://registry.yarnpkg.com/textlint-rule-ja-nakaguro-or-halfwidth-space-between-katakana/-/textlint-rule-ja-nakaguro-or-halfwidth-space-between-katakana-2.2.0.tgz#8a74ec39ee7863da9ba437c84b5e29d24e782a66"
329+
integrity sha512-6e5LfdjQgpkvGqMPFLxXtXyfXgc8iLOBuBda1jPWT873ttlfzTR9djjS7zmTkmNZDO4x0nvYPNTxCvgvilzlMQ==
337330
dependencies:
338331
match-index "^1.0.3"
339332
textlint-rule-helper "^2.2.0"
340333

341-
textlint-rule-ja-no-space-around-parentheses@^2.1.3:
342-
version "2.1.3"
343-
resolved "https://registry.yarnpkg.com/textlint-rule-ja-no-space-around-parentheses/-/textlint-rule-ja-no-space-around-parentheses-2.1.3.tgz#b3574f99012e4c729d2d5f096ee880e05e1fffa4"
344-
integrity sha512-cyOrJvCfgQjW7KYki9sECcmaarseamNqrIhwmcj/OpCs/h6hdUEhmxuqB9vC6fiadJRJziprjiwCVawDZXguUA==
334+
textlint-rule-ja-no-space-around-parentheses@^2.2.0:
335+
version "2.2.0"
336+
resolved "https://registry.yarnpkg.com/textlint-rule-ja-no-space-around-parentheses/-/textlint-rule-ja-no-space-around-parentheses-2.2.0.tgz#d69792c5978938b3b401009f24b7c13aed302960"
337+
integrity sha512-7m6n2XzOyYRVDvRfdYIxz6Qg23KA7BslYW44dAxYtmdVuDzQNKoSbZoGkZju/ITKsiN4JW+e/zEfFAY/qBEucQ==
345338
dependencies:
346339
match-index "^1.0.3"
347340
textlint-rule-helper "^2.2.0"
348341

349-
textlint-rule-ja-no-space-between-full-width@^2.1.3:
350-
version "2.1.3"
351-
resolved "https://registry.yarnpkg.com/textlint-rule-ja-no-space-between-full-width/-/textlint-rule-ja-no-space-between-full-width-2.1.3.tgz#8976ed4ae26703a93c20226c2d24419aae04fa7a"
352-
integrity sha512-F2QR2Lg4je67WIdXIGfuiaVs4Rg9+OzKZRgEfqq/ZfVaVWk4O8i12R+6y2+A0dzDlPPrPQzKlwXnsR5O+G9I4w==
342+
textlint-rule-ja-no-space-between-full-width@^2.2.0:
343+
version "2.2.0"
344+
resolved "https://registry.yarnpkg.com/textlint-rule-ja-no-space-between-full-width/-/textlint-rule-ja-no-space-between-full-width-2.2.0.tgz#5fb412279f9e36892c2f58c2ec194480fc6b58b9"
345+
integrity sha512-oe5hOTbiKyhSTsBVroRk1mJqfUuCFeHexK3Sb6KWBET9sAhN3j7BnoKwxe2mjiDX5nXg+7Ka3ziwfQlnQ41l0w==
353346
dependencies:
354347
match-index "^1.0.3"
355348
regx "^1.0.4"
356349
textlint-rule-helper "^2.2.0"
357350

358-
textlint-rule-ja-space-after-exclamation@^2.1.3:
359-
version "2.1.3"
360-
resolved "https://registry.yarnpkg.com/textlint-rule-ja-space-after-exclamation/-/textlint-rule-ja-space-after-exclamation-2.1.3.tgz#83323d2b3f04e4e48f24745a2dfef9fb7fed809b"
361-
integrity sha512-wFk1nbYTonT4cUaSBwR/XT8I7mF401tevq7WwkqyvhqdDhM9mSttjMIwxZ81FbyIgcsvkY6nZHN+WCK+7zB/7A==
351+
textlint-rule-ja-space-after-exclamation@^2.2.0:
352+
version "2.2.0"
353+
resolved "https://registry.yarnpkg.com/textlint-rule-ja-space-after-exclamation/-/textlint-rule-ja-space-after-exclamation-2.2.0.tgz#d28c90b434fcee4f9cd190c474b5256307ac4b80"
354+
integrity sha512-Foc9OzQ1WvdyKJnfXlj8DmODStNw13LpWhQK+yLecVYd3h8vLhaGvnpTitM6hj2Ep7klmX54Csn/iKDfGHb4Hw==
362355
dependencies:
363356
match-index "^1.0.3"
364357
textlint-rule-helper "^2.2.0"
365358

366-
textlint-rule-ja-space-after-question@^2.1.3:
367-
version "2.1.3"
368-
resolved "https://registry.yarnpkg.com/textlint-rule-ja-space-after-question/-/textlint-rule-ja-space-after-question-2.1.3.tgz#2b58743a366b1eb3adaee0bdcfcfb077de06a653"
369-
integrity sha512-PyAqIYwzwzDhZVPqLqXdDRmznV23zQQl9EAR3iAuY/4opoHc/iaxNtECqkfJwuI1y3lXQkiHyRLcrvC/qB58ZQ==
359+
textlint-rule-ja-space-after-question@^2.2.0:
360+
version "2.2.0"
361+
resolved "https://registry.yarnpkg.com/textlint-rule-ja-space-after-question/-/textlint-rule-ja-space-after-question-2.2.0.tgz#c94312c245ac5331b8e607a5e751718408e74144"
362+
integrity sha512-SoYKd8x0kPVp/4sa8XOE/62SAganWpbDcGl1CJ7aTk151+pO2C7Z34UnjeC9olYYxM9m0pZ0AOfdCwB3yvteJw==
370363
dependencies:
371364
match-index "^1.0.1"
372365
textlint-rule-helper "^2.2.0"
373366

374-
textlint-rule-ja-space-around-code@^2.1.3:
375-
version "2.1.3"
376-
resolved "https://registry.yarnpkg.com/textlint-rule-ja-space-around-code/-/textlint-rule-ja-space-around-code-2.1.3.tgz#0e0e7f55c205a99bc7a7696eb4f2a2c018582b1b"
377-
integrity sha512-EoVMBSEsE56D7ykPFaZ9THBMesIKXZOkBIpLRPT8Rib+675o+MOGno5jOkXSHuNWgvyhpRLIbc3Ai1uwP2W1hw==
367+
textlint-rule-ja-space-around-code@^2.2.0:
368+
version "2.2.0"
369+
resolved "https://registry.yarnpkg.com/textlint-rule-ja-space-around-code/-/textlint-rule-ja-space-around-code-2.2.0.tgz#8fbc073f23799fadd43e7f5db6f32c7726b86505"
370+
integrity sha512-JJfnSTFJCBL618TYVMqFfil8r7MhZuY0tEg2kyD6k/gcjbYFBx050pEl/RJJ5uD3UShLV7y4t289Gg9zuNjklw==
378371
dependencies:
379372
match-index "^1.0.1"
380373
textlint-rule-helper "^2.2.0"
381374

382-
textlint-rule-ja-space-between-half-and-full-width@^2.1.3:
383-
version "2.1.3"
384-
resolved "https://registry.yarnpkg.com/textlint-rule-ja-space-between-half-and-full-width/-/textlint-rule-ja-space-between-half-and-full-width-2.1.3.tgz#7678629bd42e3c5af0010c920d61baef316ca72f"
385-
integrity sha512-Unvqh5C92BUPktVEN8L6occpo6mve0fLlxDwY8B6U9ZzBp0vWasV04GcDKKifDDqYAitm3fAMYtmd2t2J1Zv5A==
375+
textlint-rule-ja-space-between-half-and-full-width@^2.2.0:
376+
version "2.2.0"
377+
resolved "https://registry.yarnpkg.com/textlint-rule-ja-space-between-half-and-full-width/-/textlint-rule-ja-space-between-half-and-full-width-2.2.0.tgz#3ee47af1ce7047265a9fdb6395da2f88176fe626"
378+
integrity sha512-/NJb0FrBa0qx/Z1SuW1nE0dhERCRNxz8IkdZ8V3VPxtZIaeBbPLdYxLf7h5qJnEAapqSd85pvZ4EXZI3RArvYw==
386379
dependencies:
387380
match-index "^1.0.1"
388381
textlint-rule-helper "^2.2.0"
389382

383+
textlint-rule-no-hankaku-kana@^1.0.2:
384+
version "1.0.2"
385+
resolved "https://registry.yarnpkg.com/textlint-rule-no-hankaku-kana/-/textlint-rule-no-hankaku-kana-1.0.2.tgz#6d3a936b18cd7021ebffca8d4111181dc159f4c8"
386+
integrity sha1-bTqTaxjNcCHr/8qNQREYHcFZ9Mg=
387+
dependencies:
388+
match-index "^1.0.1"
389+
textlint-rule-helper "^1.1.5"
390+
390391
textlint-rule-no-mix-dearu-desumasu@^5.0.0:
391392
version "5.0.0"
392393
resolved "https://registry.yarnpkg.com/textlint-rule-no-mix-dearu-desumasu/-/textlint-rule-no-mix-dearu-desumasu-5.0.0.tgz#c17ebc015cafc75ca38d10766f18c7593ee9c239"
@@ -410,18 +411,18 @@ textlint-rule-no-zero-width-spaces@^1.0.1:
410411
resolved "https://registry.yarnpkg.com/textlint-rule-no-zero-width-spaces/-/textlint-rule-no-zero-width-spaces-1.0.1.tgz#15a6abda05f08e483d5bb33a7034d904259d77a3"
411412
integrity sha512-AkxpzBILGB4YsXddzHx2xqpXmqMv5Yd+PQm4anUV+ADSJuwLP1Jd6yHf/LOtu9j3ps8K3XM9vQrXRK73z0bU3A==
412413

413-
textlint-rule-preset-ja-spacing@^2.1.3:
414-
version "2.1.3"
415-
resolved "https://registry.yarnpkg.com/textlint-rule-preset-ja-spacing/-/textlint-rule-preset-ja-spacing-2.1.3.tgz#773be672f9abab3aa44b9ebcd5dc3c886e26ff27"
416-
integrity sha512-SPfSuWUO3YCUpYyGwQmH1qPK345CxR1eO+Ul6S3G8njc0CgYGJdzTQ2A+LIXYKtWLz/FZikSZppTj5k68uTVPQ==
414+
textlint-rule-preset-ja-spacing@^2.2.0:
415+
version "2.2.0"
416+
resolved "https://registry.yarnpkg.com/textlint-rule-preset-ja-spacing/-/textlint-rule-preset-ja-spacing-2.2.0.tgz#14529cba677d54e17647319012902df5007e5d70"
417+
integrity sha512-o8bCFoN5d5rnDVIIwULVIGMjsibupJ5S4J1vtXdXLar7TG7HsXHe2f/rHxP4gApy+fBC/RI6EXui62Zt6PCGZw==
417418
dependencies:
418-
textlint-rule-ja-nakaguro-or-halfwidth-space-between-katakana "^2.1.3"
419-
textlint-rule-ja-no-space-around-parentheses "^2.1.3"
420-
textlint-rule-ja-no-space-between-full-width "^2.1.3"
421-
textlint-rule-ja-space-after-exclamation "^2.1.3"
422-
textlint-rule-ja-space-after-question "^2.1.3"
423-
textlint-rule-ja-space-around-code "^2.1.3"
424-
textlint-rule-ja-space-between-half-and-full-width "^2.1.3"
419+
textlint-rule-ja-nakaguro-or-halfwidth-space-between-katakana "^2.2.0"
420+
textlint-rule-ja-no-space-around-parentheses "^2.2.0"
421+
textlint-rule-ja-no-space-between-full-width "^2.2.0"
422+
textlint-rule-ja-space-after-exclamation "^2.2.0"
423+
textlint-rule-ja-space-after-question "^2.2.0"
424+
textlint-rule-ja-space-around-code "^2.2.0"
425+
textlint-rule-ja-space-between-half-and-full-width "^2.2.0"
425426

426427
textlint-rule-preset-jtf-style@^2.3.12:
427428
version "2.3.12"
@@ -453,10 +454,15 @@ unist-util-is@^3.0.0:
453454
resolved "https://registry.yarnpkg.com/unist-util-is/-/unist-util-is-3.0.0.tgz#d9e84381c2468e82629e4a5be9d7d05a2dd324cd"
454455
integrity sha512-sVZZX3+kspVNmLWBPAB6r+7D9ZgAFPNWm66f7YNb420RlQSbn+n8rG8dGZSkrER7ZIXGQYNm5pqC3v3HopH24A==
455456

457+
unist-util-is@^4.0.0:
458+
version "4.1.0"
459+
resolved "https://registry.yarnpkg.com/unist-util-is/-/unist-util-is-4.1.0.tgz#976e5f462a7a5de73d94b706bac1b90671b57797"
460+
integrity sha512-ZOQSsnce92GrxSqlnEEseX0gi7GH9zTJZ0p9dtu87WRb/37mMPO2Ilx1s/t9vBHrFhbgweUwb+t7cIn5dxPhZg==
461+
456462
unist-util-is@^5.0.0:
457-
version "5.1.0"
458-
resolved "https://registry.yarnpkg.com/unist-util-is/-/unist-util-is-5.1.0.tgz#93cab236c0d98e7c02265f6cfa3efe8b117a628c"
459-
integrity sha512-pWspZ+AvTqYbC+xWeRmzGqbcY8Na08Eowlfs2xchWTYot8vBBAq+syrE/LWS0bw1D/JOu4lwzDbEb6Mz13tK+g==
463+
version "5.1.1"
464+
resolved "https://registry.yarnpkg.com/unist-util-is/-/unist-util-is-5.1.1.tgz#e8aece0b102fa9bc097b0fef8f870c496d4a6236"
465+
integrity sha512-F5CZ68eYzuSvJjGhCLPL3cYx45IxkqXSetCcRgUXtbcm50X2L9oOWQlfUfDdAf+6Pd27YDblBfdtmsThXmwpbQ==
460466

461467
unist-util-visit-parents@^2.0.0:
462468
version "2.1.2"
@@ -465,6 +471,14 @@ unist-util-visit-parents@^2.0.0:
465471
dependencies:
466472
unist-util-is "^3.0.0"
467473

474+
unist-util-visit-parents@^3.0.0:
475+
version "3.1.1"
476+
resolved "https://registry.yarnpkg.com/unist-util-visit-parents/-/unist-util-visit-parents-3.1.1.tgz#65a6ce698f78a6b0f56aa0e88f13801886cdaef6"
477+
integrity sha512-1KROIZWo6bcMrZEwiH2UrXDyalAa0uqzWCxCJj6lPOvTve2WkfgCytoDTPaMnodXh1WrXOq0haVYHj99ynJlsg==
478+
dependencies:
479+
"@types/unist" "^2.0.0"
480+
unist-util-is "^4.0.0"
481+
468482
unist-util-visit-parents@^4.0.0:
469483
version "4.1.1"
470484
resolved "https://registry.yarnpkg.com/unist-util-visit-parents/-/unist-util-visit-parents-4.1.1.tgz#e83559a4ad7e6048a46b1bdb22614f2f3f4724f2"
@@ -480,6 +494,15 @@ unist-util-visit@^1.1.0:
480494
dependencies:
481495
unist-util-visit-parents "^2.0.0"
482496

497+
unist-util-visit@^2.0.3:
498+
version "2.0.3"
499+
resolved "https://registry.yarnpkg.com/unist-util-visit/-/unist-util-visit-2.0.3.tgz#c3703893146df47203bb8a9795af47d7b971208c"
500+
integrity sha512-iJ4/RczbJMkD0712mGktuGpm/U4By4FfDonL7N/9tATGIF4imikjOuagyMY53tnZq3NP6BcmlrHhEKAfGWjh7Q==
501+
dependencies:
502+
"@types/unist" "^2.0.0"
503+
unist-util-is "^4.0.0"
504+
unist-util-visit-parents "^3.0.0"
505+
483506
unist-util-visit@^3.0.0:
484507
version "3.1.0"
485508
resolved "https://registry.yarnpkg.com/unist-util-visit/-/unist-util-visit-3.1.0.tgz#9420d285e1aee938c7d9acbafc8e160186dbaf7b"

0 commit comments

Comments
 (0)