@anolilab/textlint-config 9.0.5 → 9.0.7
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 +17 -0
- package/package.json +91 -91
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,20 @@
|
|
|
1
|
+
## @anolilab/textlint-config [9.0.7](https://github.com/anolilab/javascript-style-guide/compare/@anolilab/textlint-config@9.0.6...@anolilab/textlint-config@9.0.7) (2025-10-02)
|
|
2
|
+
|
|
3
|
+
### Bug Fixes
|
|
4
|
+
|
|
5
|
+
* update textlint-config to use pnpm preset ([21a44d8](https://github.com/anolilab/javascript-style-guide/commit/21a44d8269ebb5a889a5170b6d10911cd16723d8))
|
|
6
|
+
|
|
7
|
+
## @anolilab/textlint-config [9.0.6](https://github.com/anolilab/javascript-style-guide/compare/@anolilab/textlint-config@9.0.5...@anolilab/textlint-config@9.0.6) (2025-10-02)
|
|
8
|
+
|
|
9
|
+
### Bug Fixes
|
|
10
|
+
|
|
11
|
+
* enhance Prettier configuration and update package scripts ([355011d](https://github.com/anolilab/javascript-style-guide/commit/355011d32f0da15272dca8c9dc7bf2b912191ee8))
|
|
12
|
+
|
|
13
|
+
### Miscellaneous Chores
|
|
14
|
+
|
|
15
|
+
* **deps:** update package dependencies to latest versions ([028b723](https://github.com/anolilab/javascript-style-guide/commit/028b7237222bfddb4f4ce43a1247f5a3ed9f2c68))
|
|
16
|
+
* update @visulima/packem to version 2.0.0-alpha.19 and add eslint-plugin-erasable-syntax-only@0.3.1\n\n- Updated all instances of @visulima/packem to the latest alpha version.\n- Added new dependency eslint-plugin-erasable-syntax-only for enhanced linting capabilities.\n- Updated devDependencies in various package.json files to ensure consistency across configurations. ([0d62091](https://github.com/anolilab/javascript-style-guide/commit/0d620916bbabb0d64266136978c0b038844e3bc7))
|
|
17
|
+
|
|
1
18
|
## @anolilab/textlint-config [9.0.5](https://github.com/anolilab/javascript-style-guide/compare/@anolilab/textlint-config@9.0.4...@anolilab/textlint-config@9.0.5) (2025-09-05)
|
|
2
19
|
|
|
3
20
|
### Bug Fixes
|
package/package.json
CHANGED
|
@@ -1,94 +1,94 @@
|
|
|
1
1
|
{
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
2
|
+
"name": "@anolilab/textlint-config",
|
|
3
|
+
"version": "9.0.7",
|
|
4
|
+
"description": "Anolilab Coding Standard for text linting.",
|
|
5
|
+
"keywords": [
|
|
6
|
+
"anolilab",
|
|
7
|
+
"lint",
|
|
8
|
+
"text",
|
|
9
|
+
"textlint",
|
|
10
|
+
"write-good",
|
|
11
|
+
"@textlint-rule/textlint-rule-no-invalid-control-character",
|
|
12
|
+
"@textlint-rule/textlint-rule-no-unmatched-pair",
|
|
13
|
+
"@textlint-rule/textlint-rule-preset-google",
|
|
14
|
+
"textlint-filter-rule-comments",
|
|
15
|
+
"textlint-rule-abbr-within-parentheses",
|
|
16
|
+
"textlint-rule-alex",
|
|
17
|
+
"textlint-rule-apostrophe",
|
|
18
|
+
"textlint-rule-common-misspellings",
|
|
19
|
+
"textlint-rule-date-weekday-mismatch",
|
|
20
|
+
"textlint-rule-diacritics",
|
|
21
|
+
"textlint-rule-en-capitalization",
|
|
22
|
+
"textlint-rule-footnote-order",
|
|
23
|
+
"textlint-rule-helper",
|
|
24
|
+
"textlint-rule-no-dead-link",
|
|
25
|
+
"textlint-rule-no-empty-section",
|
|
26
|
+
"textlint-rule-no-todo",
|
|
27
|
+
"textlint-rule-terminology",
|
|
28
|
+
"textlint-rule-write-good"
|
|
29
|
+
],
|
|
30
|
+
"homepage": "https://anolilab.com/nodejs/packages/textlint-config",
|
|
31
|
+
"repository": {
|
|
32
|
+
"type": "git",
|
|
33
|
+
"url": "https://github.com/anolilab/javascript-style-guide.git",
|
|
34
|
+
"directory": "packages/textlint-config"
|
|
35
|
+
},
|
|
36
|
+
"funding": [
|
|
37
|
+
{
|
|
38
|
+
"type": "github",
|
|
39
|
+
"url": "https://github.com/sponsors/prisis"
|
|
35
40
|
},
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
"url": "https://github.com/sponsors/prisis"
|
|
40
|
-
},
|
|
41
|
-
{
|
|
42
|
-
"type": "consulting",
|
|
43
|
-
"url": "https://anolilab.com/support"
|
|
44
|
-
}
|
|
45
|
-
],
|
|
46
|
-
"license": "MIT",
|
|
47
|
-
"author": {
|
|
48
|
-
"name": "Daniel Bannert",
|
|
49
|
-
"email": "d.bannert@anolilab.de"
|
|
50
|
-
},
|
|
51
|
-
"type": "module",
|
|
52
|
-
"bin": {
|
|
53
|
-
"textlint-config:install": "./dist/bin.js"
|
|
54
|
-
},
|
|
55
|
-
"files": [
|
|
56
|
-
"dist",
|
|
57
|
-
"README.md",
|
|
58
|
-
"CHANGELOG.md",
|
|
59
|
-
"LICENSE.md"
|
|
60
|
-
],
|
|
61
|
-
"dependencies": {
|
|
62
|
-
"@textlint-rule/textlint-rule-no-invalid-control-character": "^3.0.0",
|
|
63
|
-
"@textlint-rule/textlint-rule-no-unmatched-pair": "^2.0.4",
|
|
64
|
-
"@textlint-rule/textlint-rule-preset-google": "^0.1.2",
|
|
65
|
-
"@textlint/ast-node-types": "^15.2.2",
|
|
66
|
-
"@textlint/types": "^15.2.2",
|
|
67
|
-
"textlint-filter-rule-comments": "^1.2.2",
|
|
68
|
-
"textlint-rule-abbr-within-parentheses": "^1.0.2",
|
|
69
|
-
"textlint-rule-alex": "^5.0.0",
|
|
70
|
-
"textlint-rule-apostrophe": "^3.0.0",
|
|
71
|
-
"textlint-rule-common-misspellings": "^1.0.1",
|
|
72
|
-
"textlint-rule-date-weekday-mismatch": "^1.1.1",
|
|
73
|
-
"textlint-rule-diacritics": "^2.1.4",
|
|
74
|
-
"textlint-rule-en-capitalization": "^2.0.3",
|
|
75
|
-
"textlint-rule-footnote-order": "^1.0.3",
|
|
76
|
-
"textlint-rule-helper": "^2.5.0",
|
|
77
|
-
"textlint-rule-no-dead-link": "^6.0.1",
|
|
78
|
-
"textlint-rule-no-empty-section": "^1.1.0",
|
|
79
|
-
"textlint-rule-no-todo": "^2.0.1",
|
|
80
|
-
"textlint-rule-terminology": "^5.2.15",
|
|
81
|
-
"textlint-rule-write-good": "^2.0.0",
|
|
82
|
-
"write-good": "^1.0.8"
|
|
83
|
-
},
|
|
84
|
-
"peerDependencies": {
|
|
85
|
-
"textlint": "^13.4.1"
|
|
86
|
-
},
|
|
87
|
-
"engines": {
|
|
88
|
-
"node": ">=20.18.* <=24.*"
|
|
89
|
-
},
|
|
90
|
-
"publishConfig": {
|
|
91
|
-
"access": "public",
|
|
92
|
-
"provenance": true
|
|
41
|
+
{
|
|
42
|
+
"type": "consulting",
|
|
43
|
+
"url": "https://anolilab.com/support"
|
|
93
44
|
}
|
|
94
|
-
|
|
45
|
+
],
|
|
46
|
+
"license": "MIT",
|
|
47
|
+
"author": {
|
|
48
|
+
"name": "Daniel Bannert",
|
|
49
|
+
"email": "d.bannert@anolilab.de"
|
|
50
|
+
},
|
|
51
|
+
"type": "module",
|
|
52
|
+
"bin": {
|
|
53
|
+
"textlint-config:install": "./dist/bin.js"
|
|
54
|
+
},
|
|
55
|
+
"files": [
|
|
56
|
+
"dist",
|
|
57
|
+
"README.md",
|
|
58
|
+
"CHANGELOG.md",
|
|
59
|
+
"LICENSE.md"
|
|
60
|
+
],
|
|
61
|
+
"dependencies": {
|
|
62
|
+
"@textlint-rule/textlint-rule-no-invalid-control-character": "^3.0.0",
|
|
63
|
+
"@textlint-rule/textlint-rule-no-unmatched-pair": "^2.0.4",
|
|
64
|
+
"@textlint-rule/textlint-rule-preset-google": "^0.1.2",
|
|
65
|
+
"@textlint/ast-node-types": "^15.2.2",
|
|
66
|
+
"@textlint/types": "^15.2.2",
|
|
67
|
+
"textlint-filter-rule-comments": "^1.2.2",
|
|
68
|
+
"textlint-rule-abbr-within-parentheses": "^1.0.2",
|
|
69
|
+
"textlint-rule-alex": "^5.0.0",
|
|
70
|
+
"textlint-rule-apostrophe": "^3.0.0",
|
|
71
|
+
"textlint-rule-common-misspellings": "^1.0.1",
|
|
72
|
+
"textlint-rule-date-weekday-mismatch": "^1.1.1",
|
|
73
|
+
"textlint-rule-diacritics": "^2.1.4",
|
|
74
|
+
"textlint-rule-en-capitalization": "^2.0.3",
|
|
75
|
+
"textlint-rule-footnote-order": "^1.0.3",
|
|
76
|
+
"textlint-rule-helper": "^2.5.0",
|
|
77
|
+
"textlint-rule-no-dead-link": "^6.0.1",
|
|
78
|
+
"textlint-rule-no-empty-section": "^1.1.0",
|
|
79
|
+
"textlint-rule-no-todo": "^2.0.1",
|
|
80
|
+
"textlint-rule-terminology": "^5.2.16",
|
|
81
|
+
"textlint-rule-write-good": "^2.0.0",
|
|
82
|
+
"write-good": "^1.0.8"
|
|
83
|
+
},
|
|
84
|
+
"peerDependencies": {
|
|
85
|
+
"textlint": "^15.2.2"
|
|
86
|
+
},
|
|
87
|
+
"engines": {
|
|
88
|
+
"node": ">=20.18.* <=24.*"
|
|
89
|
+
},
|
|
90
|
+
"publishConfig": {
|
|
91
|
+
"access": "public",
|
|
92
|
+
"provenance": true
|
|
93
|
+
}
|
|
94
|
+
}
|