@anolilab/textlint-config 10.0.0 → 11.1.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 (3) hide show
  1. package/CHANGELOG.md +20 -0
  2. package/README.md +52 -21
  3. package/package.json +5 -4
package/CHANGELOG.md CHANGED
@@ -1,3 +1,23 @@
1
+ ## @anolilab/textlint-config [11.1.0](https://github.com/anolilab/javascript-style-guide/compare/@anolilab/textlint-config@11.0.0...@anolilab/textlint-config@11.1.0) (2026-01-05)
2
+
3
+ ### Bug Fixes
4
+
5
+ * update package versions and configurations ([6a83bb6](https://github.com/anolilab/javascript-style-guide/commit/6a83bb692298f0f037c4af6e5830865cb0a6d847))
6
+
7
+ ## @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)
8
+
9
+ ### Bug Fixes
10
+
11
+ * update package versions and configurations ([ad6cb2c](https://github.com/anolilab/javascript-style-guide/commit/ad6cb2c90ed4049ea8f136c583c0db1e477b20e7))
12
+
13
+ ### Styles
14
+
15
+ * update package configurations and dependencies ([98475c5](https://github.com/anolilab/javascript-style-guide/commit/98475c5e5e7bc5d832ef10d3d723f75340223347))
16
+
17
+ ### Miscellaneous Chores
18
+
19
+ * update configuration and scripts ([5d6a44f](https://github.com/anolilab/javascript-style-guide/commit/5d6a44f99568b5f67939dfc52047fa742fd2bf58))
20
+
1
21
  ## @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)
2
22
 
3
23
  ### Miscellaneous Chores
package/README.md CHANGED
@@ -1,9 +1,24 @@
1
- <div align="center">
2
- <h1>Text-lint Config</h1>
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
- Shareable configuration for [textlint](https://github.com/textlint/textlint) — a tool for linting and fixing text written in natural language.
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
- [![npm-image]][npm-url] [![license-image]][license-url]
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
- ```bash
25
- npm install --dev-save @anolilab/textlint-config textlint
39
+ ```sh
40
+ npm install @anolilab/textlint-config
26
41
  ```
27
42
 
28
43
  ```sh
29
- yarn add -D @anolilab/textlint-config textlint
44
+ yarn add @anolilab/textlint-config
30
45
  ```
31
46
 
32
47
  ```sh
33
- pnpm add -D @anolilab/textlint-config textlint
48
+ pnpm add @anolilab/textlint-config
34
49
  ```
35
50
 
36
51
  ## Usage
37
52
 
38
- If you dont 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`.
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[']?s", "APIs"],
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[']?s", "XHRs"],
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
- [Node.js’ release schedule](https://nodejs.org/en/about/releases/). Here’s [a
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) guild.
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
- ## License
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
- The anolilab javascript-style-guide is open-sourced software licensed under the [MIT license](https://opensource.org/licenses/MIT)
222
+ ## License
203
223
 
204
- [license-image]: https://img.shields.io/npm/l/@anolilab/textlint-config?color=blueviolet&style=for-the-badge
205
- [license-url]: LICENSE.md "license"
206
- [npm-image]: https://img.shields.io/npm/v/@anolilab/textlint-config/latest.svg?style=for-the-badge&logo=npm
207
- [npm-url]: https://www.npmjs.com/package/@anolilab/textlint-config/v/latest "npm"
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": "10.0.0",
3
+ "version": "11.1.0",
4
4
  "description": "Anolilab Coding Standard for text linting.",
5
5
  "keywords": [
6
6
  "anolilab",
@@ -64,7 +64,7 @@
64
64
  "@textlint-rule/textlint-rule-preset-google": "^0.1.2",
65
65
  "@textlint/ast-node-types": "^15.5.0",
66
66
  "@textlint/types": "^15.5.0",
67
- "textlint-filter-rule-comments": "^1.2.2",
67
+ "textlint-filter-rule-comments": "1.3.0",
68
68
  "textlint-rule-abbr-within-parentheses": "^1.0.2",
69
69
  "textlint-rule-alex": "^5.0.0",
70
70
  "textlint-rule-apostrophe": "^3.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": "^6.0.1",
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",
@@ -90,5 +90,6 @@
90
90
  "publishConfig": {
91
91
  "access": "public",
92
92
  "provenance": true
93
- }
93
+ },
94
+ "optionalDependencies": {}
94
95
  }