Skip to content

Commit 991811e

Browse files
authored
chore: update eslint-doc-generator to v0.15 (#323)
1 parent 6e019c9 commit 991811e

28 files changed

+30
-30
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ Here's an example ESLint configuration that:
5454

5555
## <a name='Rules'></a>Rules
5656

57-
<!-- begin rules list -->
57+
<!-- begin auto-generated rules list -->
5858

5959
✅ Enabled in the `recommended` configuration.\
6060
🔧 Automatically fixable by the [`--fix` CLI option](https://eslint.org/docs/user-guide/command-line-interface#--fix).\
@@ -89,7 +89,7 @@ Here's an example ESLint configuration that:
8989
| [test-case-property-ordering](docs/rules/test-case-property-ordering.md) | require the properties of a test case to be placed in a consistent order | | 🔧 | |
9090
| [test-case-shorthand-strings](docs/rules/test-case-shorthand-strings.md) | enforce consistent usage of shorthand strings for test cases with no options | | 🔧 | |
9191

92-
<!-- end rules list -->
92+
<!-- end auto-generated rules list -->
9393

9494
## <a name='Presets'></a>Presets
9595

docs/rules/consistent-output.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
✅ This rule is enabled in the `recommended` config.
44

5-
<!-- end rule header -->
5+
<!-- end auto-generated rule header -->
66

77
When writing tests for fixable rules, the `output` property on each test case can be used to assert what autofixed code is produced, or to assert that no autofix is produced using `output: null`.
88

docs/rules/fixer-return.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
✅ This rule is enabled in the `recommended` config.
44

5-
<!-- end rule header -->
5+
<!-- end auto-generated rule header -->
66

77
In a [fixable](https://eslint.org/docs/developer-guide/working-with-rules#applying-fixes) rule, a fixer function is useless if it never returns anything.
88

docs/rules/meta-property-ordering.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
🔧 This rule is automatically fixable by the [`--fix` CLI option](https://eslint.org/docs/latest/user-guide/command-line-interface#--fix).
44

5-
<!-- end rule header -->
5+
<!-- end auto-generated rule header -->
66

77
This rule enforces that meta properties of a rule are placed in a consistent order.
88

docs/rules/no-deprecated-context-methods.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44

55
🔧 This rule is automatically fixable by the [`--fix` CLI option](https://eslint.org/docs/latest/user-guide/command-line-interface#--fix).
66

7-
<!-- end rule header -->
7+
<!-- end auto-generated rule header -->
88

99
This rule disallows the use of deprecated methods on rule `context` objects.
1010

docs/rules/no-deprecated-report-api.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44

55
🔧 This rule is automatically fixable by the [`--fix` CLI option](https://eslint.org/docs/latest/user-guide/command-line-interface#--fix).
66

7-
<!-- end rule header -->
7+
<!-- end auto-generated rule header -->
88

99
ESLint has two APIs that rules can use to report problems.
1010

docs/rules/no-identical-tests.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44

55
🔧 This rule is automatically fixable by the [`--fix` CLI option](https://eslint.org/docs/latest/user-guide/command-line-interface#--fix).
66

7-
<!-- end rule header -->
7+
<!-- end auto-generated rule header -->
88

99
Duplicate test cases can cause confusion, can be hard to detect manually in a long file, and serve no purpose.
1010

docs/rules/no-missing-message-ids.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
✅ This rule is enabled in the `recommended` config.
44

5-
<!-- end rule header -->
5+
<!-- end auto-generated rule header -->
66

77
When using `meta.messages` and `messageId` to report rule violations, it's possible to mistakenly use a `messageId` that doesn't exist in `meta.messages`.
88

docs/rules/no-missing-placeholders.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
✅ This rule is enabled in the `recommended` config.
44

5-
<!-- end rule header -->
5+
<!-- end auto-generated rule header -->
66

77
Report messages in rules can have placeholders surrounded by curly brackets.
88

docs/rules/no-only-tests.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44

55
💡 This rule is manually fixable by [editor suggestions](https://eslint.org/docs/developer-guide/working-with-rules#providing-suggestions).
66

7-
<!-- end rule header -->
7+
<!-- end auto-generated rule header -->
88

99
The [`only` property](https://eslint.org/docs/developer-guide/unit-tests#running-individual-tests) can be used as of [ESLint 7.29](https://eslint.org/blog/2021/06/eslint-v7.29.0-released#highlights) for running individual rule test cases with less-noisy debugging. This feature should be only used in development, as it prevents all the tests from running. Mistakenly checking-in a test case with this property can cause CI tests to incorrectly pass.
1010

0 commit comments

Comments
 (0)