@anolilab/textlint-config 2.0.7 → 3.0.1
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 +33 -1
- package/README.md +1 -1
- package/package.json +14 -9
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,35 @@
|
|
|
1
|
+
### @anolilab/textlint-config [3.0.1](https://github.com/anolilab/javascript-style-guide/compare/@anolilab/textlint-config@3.0.0...@anolilab/textlint-config@3.0.1) (2022-01-15)
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
### Bug Fixes
|
|
5
|
+
|
|
6
|
+
* **deps:** update dependencies (non-major) ([354adee](https://github.com/anolilab/javascript-style-guide/commit/354adee555f89913a038ab67e3323ec13f51dfc2))
|
|
7
|
+
|
|
8
|
+
## @anolilab/textlint-config [3.0.0](https://github.com/anolilab/javascript-style-guide/compare/@anolilab/textlint-config@2.0.9...@anolilab/textlint-config@3.0.0) (2021-12-12)
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
### ⚠ BREAKING CHANGES
|
|
12
|
+
|
|
13
|
+
* moved textlint out of dependencies, to fix a bug with missing bin, no it is a peerDependencies
|
|
14
|
+
|
|
15
|
+
### Features
|
|
16
|
+
|
|
17
|
+
* moved textlint out of dependencies ([b5ded20](https://github.com/anolilab/javascript-style-guide/commit/b5ded20d72e4be78ae8bfe40001695d86e0935db))
|
|
18
|
+
|
|
19
|
+
### @anolilab/textlint-config [2.0.9](https://github.com/anolilab/javascript-style-guide/compare/@anolilab/textlint-config@2.0.8...@anolilab/textlint-config@2.0.9) (2021-12-02)
|
|
20
|
+
|
|
21
|
+
|
|
22
|
+
### Bug Fixes
|
|
23
|
+
|
|
24
|
+
* **deps:** update dependency textlint to v12.1.0 ([19b856c](https://github.com/anolilab/javascript-style-guide/commit/19b856c83ce661af9d6a1bb3a584af8ca0465188))
|
|
25
|
+
|
|
26
|
+
### @anolilab/textlint-config [2.0.8](https://github.com/anolilab/javascript-style-guide/compare/@anolilab/textlint-config@2.0.7...@anolilab/textlint-config@2.0.8) (2021-11-08)
|
|
27
|
+
|
|
28
|
+
|
|
29
|
+
### Bug Fixes
|
|
30
|
+
|
|
31
|
+
* **deps:** update dependency textlint-rule-no-dead-link to v4.8.0 ([1de655e](https://github.com/anolilab/javascript-style-guide/commit/1de655e00a3f952163c346ae8d032be2e1cf5a20))
|
|
32
|
+
|
|
1
33
|
### @anolilab/textlint-config [2.0.7](https://github.com/anolilab/javascript-style-guide/compare/@anolilab/textlint-config@2.0.6...@anolilab/textlint-config@2.0.7) (2021-09-02)
|
|
2
34
|
|
|
3
35
|
|
|
@@ -32,7 +64,7 @@
|
|
|
32
64
|
|
|
33
65
|
### Bug Fixes
|
|
34
66
|
|
|
35
|
-
* removed index.
|
|
67
|
+
* removed index.cjs from text-lint ([e5ab6d6](https://github.com/anolilab/javascript-style-guide/commit/e5ab6d6a9214b288646d471e19afff163ac5cf57))
|
|
36
68
|
|
|
37
69
|
### @anolilab/textlint-config [2.0.2](https://github.com/anolilab/javascript-style-guide/compare/@anolilab/textlint-config@2.0.1...@anolilab/textlint-config@2.0.2) (2021-05-04)
|
|
38
70
|
|
package/README.md
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@anolilab/textlint-config",
|
|
3
|
-
"version": "
|
|
3
|
+
"version": "3.0.1",
|
|
4
4
|
"description": "Anolilab Coding Standard for text linting.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"anolilab",
|
|
@@ -15,11 +15,6 @@
|
|
|
15
15
|
"url": "https://github.com/anolilab/javascript-style-guide.git",
|
|
16
16
|
"directory": "packages/textlint-config"
|
|
17
17
|
},
|
|
18
|
-
"license": "MIT",
|
|
19
|
-
"author": {
|
|
20
|
-
"name": "Daniel Bannert",
|
|
21
|
-
"email": "d.bannert@anolilab.de"
|
|
22
|
-
},
|
|
23
18
|
"funding": [
|
|
24
19
|
{
|
|
25
20
|
"type": "github",
|
|
@@ -30,6 +25,11 @@
|
|
|
30
25
|
"url": "https://anolilab.com/support"
|
|
31
26
|
}
|
|
32
27
|
],
|
|
28
|
+
"license": "MIT",
|
|
29
|
+
"author": {
|
|
30
|
+
"name": "Daniel Bannert",
|
|
31
|
+
"email": "d.bannert@anolilab.de"
|
|
32
|
+
},
|
|
33
33
|
"type": "module",
|
|
34
34
|
"files": [
|
|
35
35
|
"lib",
|
|
@@ -44,7 +44,6 @@
|
|
|
44
44
|
"@textlint-rule/textlint-rule-no-invalid-control-character": "2.0.0",
|
|
45
45
|
"@textlint-rule/textlint-rule-no-unmatched-pair": "1.0.8",
|
|
46
46
|
"@textlint-rule/textlint-rule-preset-google": "0.1.2",
|
|
47
|
-
"textlint": "12.0.2",
|
|
48
47
|
"textlint-filter-rule-comments": "^1.2.2",
|
|
49
48
|
"textlint-rule-abbr-within-parentheses": "1.0.2",
|
|
50
49
|
"textlint-rule-alex": "3.0.0",
|
|
@@ -53,14 +52,20 @@
|
|
|
53
52
|
"textlint-rule-diacritics": "1.0.0",
|
|
54
53
|
"textlint-rule-en-capitalization": "2.0.3",
|
|
55
54
|
"textlint-rule-footnote-order": "1.0.3",
|
|
56
|
-
"textlint-rule-helper": "2.2.
|
|
57
|
-
"textlint-rule-no-dead-link": "4.
|
|
55
|
+
"textlint-rule-helper": "2.2.1",
|
|
56
|
+
"textlint-rule-no-dead-link": "4.8.0",
|
|
58
57
|
"textlint-rule-no-empty-section": "1.1.0",
|
|
59
58
|
"textlint-rule-no-todo": "2.0.1",
|
|
60
59
|
"textlint-rule-terminology": "2.1.5",
|
|
61
60
|
"textlint-rule-write-good": "2.0.0",
|
|
62
61
|
"write-good": "1.0.8"
|
|
63
62
|
},
|
|
63
|
+
"devDependencies": {
|
|
64
|
+
"textlint": "^12.1.0"
|
|
65
|
+
},
|
|
66
|
+
"peerDependencies": {
|
|
67
|
+
"textlint": "^12.1.0"
|
|
68
|
+
},
|
|
64
69
|
"engines": {
|
|
65
70
|
"node": ">=12"
|
|
66
71
|
},
|