@anolilab/textlint-config 2.0.6 → 3.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.
Files changed (3) hide show
  1. package/CHANGELOG.md +32 -0
  2. package/README.md +39 -1
  3. package/package.json +19 -4
package/CHANGELOG.md CHANGED
@@ -1,3 +1,35 @@
1
+ ## @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)
2
+
3
+
4
+ ### ⚠ BREAKING CHANGES
5
+
6
+ * moved textlint out of dependencies, to fix a bug with missing bin, no it is a peerDependencies
7
+
8
+ ### Features
9
+
10
+ * moved textlint out of dependencies ([b5ded20](https://github.com/anolilab/javascript-style-guide/commit/b5ded20d72e4be78ae8bfe40001695d86e0935db))
11
+
12
+ ### @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)
13
+
14
+
15
+ ### Bug Fixes
16
+
17
+ * **deps:** update dependency textlint to v12.1.0 ([19b856c](https://github.com/anolilab/javascript-style-guide/commit/19b856c83ce661af9d6a1bb3a584af8ca0465188))
18
+
19
+ ### @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)
20
+
21
+
22
+ ### Bug Fixes
23
+
24
+ * **deps:** update dependency textlint-rule-no-dead-link to v4.8.0 ([1de655e](https://github.com/anolilab/javascript-style-guide/commit/1de655e00a3f952163c346ae8d032be2e1cf5a20))
25
+
26
+ ### @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)
27
+
28
+
29
+ ### Bug Fixes
30
+
31
+ * added funding to the package ([f90d18f](https://github.com/anolilab/javascript-style-guide/commit/f90d18f8347a4bdc395b1740c85ac74a4072297c))
32
+
1
33
  ### @anolilab/textlint-config [2.0.6](https://github.com/anolilab/javascript-style-guide/compare/@anolilab/textlint-config@2.0.5...@anolilab/textlint-config@2.0.6) (2021-09-02)
2
34
 
3
35
 
package/README.md CHANGED
@@ -1,9 +1,23 @@
1
1
  # Text-lint Config
2
2
 
3
+ Anolilab Coding Standard for text linting.
4
+
5
+ ---
6
+
7
+ <div align="center">
8
+ <p>
9
+ <sup>
10
+ Daniel Bannert's open source work is supported by the community on <a href="https://github.com/sponsors/prisis">GitHub Sponsors</a>
11
+ </sup>
12
+ </p>
13
+ </div>
14
+
15
+ ---
16
+
3
17
  ## Install
4
18
 
5
19
  ```bash
6
- npm install --dev-save @anolilab/textlint-config
20
+ npm install --dev-save @anolilab/textlint-config textlint
7
21
  ```
8
22
 
9
23
  ## Usage
@@ -159,3 +173,27 @@ If you already have a `.textlintrc`, then you can extend the `.textlintrc`, with
159
173
  }
160
174
  }
161
175
  ```
176
+
177
+ ## Supported Node.js Versions
178
+
179
+ Libraries in this ecosystem make the best effort to track
180
+ [Node.js' release schedule](https://nodejs.org/en/about/releases/). Here's [a
181
+ post on why we think this is important](https://medium.com/the-node-js-collection/maintainers-should-consider-following-node-js-release-schedule-ab08ed4de71a).
182
+
183
+ Contributing
184
+ ------------
185
+
186
+ 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.
187
+
188
+ > **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.
189
+
190
+ Credits
191
+ -------------
192
+
193
+ - [Daniel Bannert](https://github.com/prisis)
194
+ - [All Contributors](https://github.com/anolilab/javascript-style-guide/graphs/contributors)
195
+
196
+ License
197
+ -------------
198
+
199
+ The anolilab javascript-style-guide is open-sourced software licensed under the [MIT license](https://opensource.org/licenses/MIT)
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@anolilab/textlint-config",
3
- "version": "2.0.6",
3
+ "version": "3.0.0",
4
4
  "description": "Anolilab Coding Standard for text linting.",
5
5
  "keywords": [
6
6
  "anolilab",
@@ -9,12 +9,22 @@
9
9
  "textlint",
10
10
  "write-good"
11
11
  ],
12
- "homepage": "http://anolilab.com/nodejs/packages/textlint-config",
12
+ "homepage": "https://anolilab.com/nodejs/packages/textlint-config",
13
13
  "repository": {
14
14
  "type": "git",
15
15
  "url": "https://github.com/anolilab/javascript-style-guide.git",
16
16
  "directory": "packages/textlint-config"
17
17
  },
18
+ "funding": [
19
+ {
20
+ "type": "github",
21
+ "url": "https://github.com/sponsors/prisis"
22
+ },
23
+ {
24
+ "type": "consulting",
25
+ "url": "https://anolilab.com/support"
26
+ }
27
+ ],
18
28
  "license": "MIT",
19
29
  "author": {
20
30
  "name": "Daniel Bannert",
@@ -34,7 +44,6 @@
34
44
  "@textlint-rule/textlint-rule-no-invalid-control-character": "2.0.0",
35
45
  "@textlint-rule/textlint-rule-no-unmatched-pair": "1.0.8",
36
46
  "@textlint-rule/textlint-rule-preset-google": "0.1.2",
37
- "textlint": "12.0.2",
38
47
  "textlint-filter-rule-comments": "^1.2.2",
39
48
  "textlint-rule-abbr-within-parentheses": "1.0.2",
40
49
  "textlint-rule-alex": "3.0.0",
@@ -44,13 +53,19 @@
44
53
  "textlint-rule-en-capitalization": "2.0.3",
45
54
  "textlint-rule-footnote-order": "1.0.3",
46
55
  "textlint-rule-helper": "2.2.0",
47
- "textlint-rule-no-dead-link": "4.7.0",
56
+ "textlint-rule-no-dead-link": "4.8.0",
48
57
  "textlint-rule-no-empty-section": "1.1.0",
49
58
  "textlint-rule-no-todo": "2.0.1",
50
59
  "textlint-rule-terminology": "2.1.5",
51
60
  "textlint-rule-write-good": "2.0.0",
52
61
  "write-good": "1.0.8"
53
62
  },
63
+ "devDependencies": {
64
+ "textlint": "^12.1.0"
65
+ },
66
+ "peerDependencies": {
67
+ "textlint": "^12.1.0"
68
+ },
54
69
  "engines": {
55
70
  "node": ">=12"
56
71
  },