@anolilab/textlint-config 9.0.9 → 11.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.
- package/CHANGELOG.md +20 -0
- package/README.md +52 -21
- package/package.json +6 -6
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,23 @@
|
|
|
1
|
+
## @anolilab/textlint-config [11.0.0](https://github.com/anolilab/javascript-style-guide/compare/@anolilab/textlint-config@10.0.0...@anolilab/textlint-config@11.0.0) (2025-12-22)
|
|
2
|
+
|
|
3
|
+
### Bug Fixes
|
|
4
|
+
|
|
5
|
+
* update package versions and configurations ([ad6cb2c](https://github.com/anolilab/javascript-style-guide/commit/ad6cb2c90ed4049ea8f136c583c0db1e477b20e7))
|
|
6
|
+
|
|
7
|
+
### Styles
|
|
8
|
+
|
|
9
|
+
* update package configurations and dependencies ([98475c5](https://github.com/anolilab/javascript-style-guide/commit/98475c5e5e7bc5d832ef10d3d723f75340223347))
|
|
10
|
+
|
|
11
|
+
### Miscellaneous Chores
|
|
12
|
+
|
|
13
|
+
* update configuration and scripts ([5d6a44f](https://github.com/anolilab/javascript-style-guide/commit/5d6a44f99568b5f67939dfc52047fa742fd2bf58))
|
|
14
|
+
|
|
15
|
+
## @anolilab/textlint-config [10.0.0](https://github.com/anolilab/javascript-style-guide/compare/@anolilab/textlint-config@9.0.9...@anolilab/textlint-config@10.0.0) (2025-12-10)
|
|
16
|
+
|
|
17
|
+
### Miscellaneous Chores
|
|
18
|
+
|
|
19
|
+
* remove deprecated packages and update repository URLs ([0a3d423](https://github.com/anolilab/javascript-style-guide/commit/0a3d42307102047ac98d6a0c0ce46c7dfe5a6446))
|
|
20
|
+
|
|
1
21
|
## @anolilab/textlint-config [9.0.9](https://github.com/anolilab/javascript-style-guide/compare/@anolilab/textlint-config@9.0.8...@anolilab/textlint-config@9.0.9) (2025-11-16)
|
|
2
22
|
|
|
3
23
|
### Bug Fixes
|
package/README.md
CHANGED
|
@@ -1,9 +1,24 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
1
|
+
<!-- START_PACKAGE_OG_IMAGE_PLACEHOLDER -->
|
|
2
|
+
|
|
3
|
+
<a href="https://github.com/anolilab/semantic-release" align="center">
|
|
4
|
+
|
|
5
|
+
<img src="__assets__/package-og.svg" alt="textlint-config" />
|
|
6
|
+
|
|
7
|
+
</a>
|
|
3
8
|
|
|
4
|
-
|
|
9
|
+
<h3 align="center">Anolilab Coding Standard for text linting.</h3>
|
|
10
|
+
|
|
11
|
+
<!-- END_PACKAGE_OG_IMAGE_PLACEHOLDER -->
|
|
12
|
+
|
|
13
|
+
<br />
|
|
14
|
+
|
|
15
|
+
<div align="center">
|
|
5
16
|
|
|
6
|
-
[![
|
|
17
|
+
[![typescript-image][typescript-badge]][typescript-url]
|
|
18
|
+
[![mit licence][license-badge]][license]
|
|
19
|
+
[![npm downloads][npm-downloads-badge]][npm-downloads]
|
|
20
|
+
[![Chat][chat-badge]][chat]
|
|
21
|
+
[![PRs Welcome][prs-welcome-badge]][prs-welcome]
|
|
7
22
|
|
|
8
23
|
</div>
|
|
9
24
|
|
|
@@ -21,21 +36,21 @@ Shareable configuration for [textlint](https://github.com/textlint/textlint) —
|
|
|
21
36
|
|
|
22
37
|
## Install
|
|
23
38
|
|
|
24
|
-
```
|
|
25
|
-
npm install
|
|
39
|
+
```sh
|
|
40
|
+
npm install @anolilab/textlint-config
|
|
26
41
|
```
|
|
27
42
|
|
|
28
43
|
```sh
|
|
29
|
-
yarn add
|
|
44
|
+
yarn add @anolilab/textlint-config
|
|
30
45
|
```
|
|
31
46
|
|
|
32
47
|
```sh
|
|
33
|
-
pnpm add
|
|
48
|
+
pnpm add @anolilab/textlint-config
|
|
34
49
|
```
|
|
35
50
|
|
|
36
51
|
## Usage
|
|
37
52
|
|
|
38
|
-
If you don
|
|
53
|
+
If you don't have a `.textlintrc` or the other supported file names and `.textlintignore`, we can create the file for you after installing `@anolilab/textlint-config`, call `pnpm textlint-config:install`.
|
|
39
54
|
|
|
40
55
|
> Note: If the script detects an existing `.textlintrc` or `.textlintignore` file, it will not overwrite it.
|
|
41
56
|
|
|
@@ -77,7 +92,7 @@ If you already have a `.textlintrc`, then you can extend the `.textlintrc`, with
|
|
|
77
92
|
"terms": [
|
|
78
93
|
// Abbreviations
|
|
79
94
|
"API",
|
|
80
|
-
["API['
|
|
95
|
+
["API['']?s", "APIs"],
|
|
81
96
|
"Ajax",
|
|
82
97
|
"CLI",
|
|
83
98
|
"CSS",
|
|
@@ -90,7 +105,7 @@ If you already have a `.textlintrc`, then you can extend the `.textlintrc`, with
|
|
|
90
105
|
["^HTTPS", "HTTPS"],
|
|
91
106
|
"SSO",
|
|
92
107
|
["^XHR(s?)", "XHR$1"],
|
|
93
|
-
["^XHR['
|
|
108
|
+
["^XHR['']?s", "XHRs"],
|
|
94
109
|
"Xvfb",
|
|
95
110
|
"YAML",
|
|
96
111
|
|
|
@@ -180,28 +195,44 @@ If you already have a `.textlintrc`, then you can extend the `.textlintrc`, with
|
|
|
180
195
|
}
|
|
181
196
|
```
|
|
182
197
|
|
|
198
|
+
## Related
|
|
199
|
+
|
|
183
200
|
## Supported Node.js Versions
|
|
184
201
|
|
|
185
|
-
Libraries in this ecosystem make the best effort to track
|
|
186
|
-
|
|
187
|
-
post on why we think this is important](https://medium.com/the-node-js-collection/maintainers-should-consider-following-node-js-release-schedule-ab08ed4de71a).
|
|
202
|
+
Libraries in this ecosystem make the best effort to track [Node.js' release schedule](https://github.com/nodejs/release#release-schedule).
|
|
203
|
+
|
|
204
|
+
Here's [a post on why we think this is important](https://medium.com/the-node-js-collection/maintainers-should-consider-following-node-js-release-schedule-ab08ed4de71a).
|
|
188
205
|
|
|
189
206
|
## Contributing
|
|
190
207
|
|
|
191
|
-
If you would like to help take a look at the [list of issues](https://github.com/anolilab/javascript-style-guide/issues) and check our [Contributing](.github/CONTRIBUTING.md)
|
|
208
|
+
If you would like to help take a look at the [list of issues](https://github.com/anolilab/javascript-style-guide/issues) and check our [Contributing](.github/CONTRIBUTING.md) guidelines.
|
|
192
209
|
|
|
193
210
|
> **Note:** please note that this project is released with a Contributor Code of Conduct. By participating in this project you agree to abide by its terms.
|
|
194
211
|
|
|
195
212
|
## Credits
|
|
196
213
|
|
|
197
214
|
- [Daniel Bannert](https://github.com/prisis)
|
|
215
|
+
|
|
198
216
|
- [All Contributors](https://github.com/anolilab/javascript-style-guide/graphs/contributors)
|
|
199
217
|
|
|
200
|
-
##
|
|
218
|
+
## Made with ❤️ at Anolilab
|
|
219
|
+
|
|
220
|
+
This is an open source project and will always remain free to use. If you think it's cool, please star it 🌟. [Anolilab](https://www.anolilab.com/open-source) is a Development and AI Studio. Contact us at [hello@anolilab.com](mailto:hello@anolilab.com) if you need any help with these technologies or just want to say hi!
|
|
201
221
|
|
|
202
|
-
|
|
222
|
+
## License
|
|
203
223
|
|
|
204
|
-
|
|
205
|
-
|
|
206
|
-
|
|
207
|
-
|
|
224
|
+
The anolilab textlint-config is open-sourced software licensed under the [MIT][license-url]
|
|
225
|
+
|
|
226
|
+
<!-- badges -->
|
|
227
|
+
|
|
228
|
+
[license-badge]: https://img.shields.io/npm/l/@anolilab/textlint-config?style=for-the-badge
|
|
229
|
+
[license]: https://github.com/anolilab/javascript-style-guide/blob/main/LICENSE
|
|
230
|
+
[npm-downloads-badge]: https://img.shields.io/npm/dm/@anolilab/textlint-config?style=for-the-badge
|
|
231
|
+
[npm-downloads]: https://www.npmjs.com/package/@anolilab/textlint-config
|
|
232
|
+
[prs-welcome-badge]: https://img.shields.io/badge/PRs-welcome-brightgreen.svg?style=for-the-badge
|
|
233
|
+
[prs-welcome]: https://github.com/anolilab/javascript-style-guide/blob/main/.github/CONTRIBUTING.md
|
|
234
|
+
[chat-badge]: https://img.shields.io/discord/902465130518949899.svg?style=for-the-badge
|
|
235
|
+
[chat]: https://discord.gg/4VuvwWGaaB
|
|
236
|
+
[typescript-badge]: https://img.shields.io/badge/Typescript-294E80.svg?style=for-the-badge&logo=typescript
|
|
237
|
+
[typescript-url]: https://www.typescriptlang.org/
|
|
238
|
+
[license-url]: https://opensource.org/licenses/MIT
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@anolilab/textlint-config",
|
|
3
|
-
"version": "
|
|
3
|
+
"version": "11.0.0",
|
|
4
4
|
"description": "Anolilab Coding Standard for text linting.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"anolilab",
|
|
@@ -30,7 +30,7 @@
|
|
|
30
30
|
"homepage": "https://anolilab.com/nodejs/packages/textlint-config",
|
|
31
31
|
"repository": {
|
|
32
32
|
"type": "git",
|
|
33
|
-
"url": "https://github.com/anolilab/javascript-style-guide.git",
|
|
33
|
+
"url": "git+https://github.com/anolilab/javascript-style-guide.git",
|
|
34
34
|
"directory": "packages/textlint-config"
|
|
35
35
|
},
|
|
36
36
|
"funding": [
|
|
@@ -62,8 +62,8 @@
|
|
|
62
62
|
"@textlint-rule/textlint-rule-no-invalid-control-character": "^3.0.0",
|
|
63
63
|
"@textlint-rule/textlint-rule-no-unmatched-pair": "^2.0.4",
|
|
64
64
|
"@textlint-rule/textlint-rule-preset-google": "^0.1.2",
|
|
65
|
-
"@textlint/ast-node-types": "^15.
|
|
66
|
-
"@textlint/types": "^15.
|
|
65
|
+
"@textlint/ast-node-types": "^15.5.0",
|
|
66
|
+
"@textlint/types": "^15.5.0",
|
|
67
67
|
"textlint-filter-rule-comments": "^1.2.2",
|
|
68
68
|
"textlint-rule-abbr-within-parentheses": "^1.0.2",
|
|
69
69
|
"textlint-rule-alex": "^5.0.0",
|
|
@@ -74,7 +74,7 @@
|
|
|
74
74
|
"textlint-rule-en-capitalization": "^2.0.3",
|
|
75
75
|
"textlint-rule-footnote-order": "^1.0.3",
|
|
76
76
|
"textlint-rule-helper": "^2.5.0",
|
|
77
|
-
"textlint-rule-no-dead-link": "
|
|
77
|
+
"textlint-rule-no-dead-link": "6.1.0",
|
|
78
78
|
"textlint-rule-no-empty-section": "^1.1.0",
|
|
79
79
|
"textlint-rule-no-todo": "^2.0.1",
|
|
80
80
|
"textlint-rule-terminology": "^5.2.16",
|
|
@@ -82,7 +82,7 @@
|
|
|
82
82
|
"write-good": "^1.0.8"
|
|
83
83
|
},
|
|
84
84
|
"peerDependencies": {
|
|
85
|
-
"textlint": "^15.
|
|
85
|
+
"textlint": "^15.5.0"
|
|
86
86
|
},
|
|
87
87
|
"engines": {
|
|
88
88
|
"node": ">=20.18.* <=25.*"
|