Skip to content

Commit 64e92ca

Browse files
authored
fix: textlint bug causing PR's to fail checks fix #2636 (#2637)
1 parent 2fbad28 commit 64e92ca

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

packages/docs/docs/miscellaneous/design-concepts.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -16,11 +16,11 @@ VuePress 1.0 has been rewritten extensively, and the most important one is the i
1616

1717
### Decoupling
1818

19-
With plugins, we can implement many of the core functions with plugins, and you can see many built-in plugins [here](https://github.com/vuejs/vuepress/tree/master/packages/%40vuepress/core/lib/node/internal-plugins) that cover many of the core functions of VuePress, which used to blend in all parts of the code base, but now they’re clear at a glance.
19+
With plugins, we can implement many of the core functions with plugins, and you can see many built-in plugins [here](https://github.com/vuejs/vuepress/tree/master/packages/%40vuepress/core/lib/node/internal-plugins) that cover many of the core functions of VuePress, which used to blend in all parts of the codebase, but now they’re clear at a glance.
2020

2121
### Configuration management
2222

23-
In the past, when we came across some less common requirements, we had some doubts: if we wanted to not support it, VuePress usage scenarios were limited; but if we wanted to support it, we had to write it into the core code base and set up a separate configuration API for it. For the maintainers, apart from not conducive to long-term maintenance, this sometimes makes us feel exhausted. We must think of some better solutions. Yes, this is plugin.
23+
In the past, when we came across some less common requirements, we had some doubts: if we wanted to not support it, VuePress usage scenarios were limited; but if we wanted to support it, we had to write it into the core codebase and set up a separate configuration API for it. For the maintainers, apart from not conducive to long-term maintenance, this sometimes makes us feel exhausted. We must think of some better solutions. Yes, this is plugin.
2424

2525
### `.vuepress/config.js` is also a plugin
2626

packages/docs/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@
4545
"textlint-rule-diacritics": "^1.0.0",
4646
"textlint-rule-en-capitalization": "^2.0.2",
4747
"textlint-rule-stop-words": "^1.0.17",
48-
"textlint-rule-terminology": "^1.1.30",
48+
"textlint-rule-terminology": "^2.1.4",
4949
"textlint-rule-write-good": "^1.6.2",
5050
"vue-toasted": "^1.1.25",
5151
"vuepress": "1.6.0",

0 commit comments

Comments
 (0)