Skip to content

Commit c10afb8

Browse files
authored
Docs: Update rule descriptions for consistency (#159)
* Clarity * Punctuation * Grammar * Backticks * Formatting
1 parent 5ac45f0 commit c10afb8

37 files changed

+68
-63
lines changed

README.md

+13-13
Original file line numberDiff line numberDiff line change
@@ -47,27 +47,27 @@ Then configure the rules you want to use under the rules section.
4747
<!-- __BEGIN AUTOGENERATED TABLE__ -->
4848
Name | ✔️ | 🛠 | 💡 | Description
4949
----- | ----- | ----- | ----- | -----
50-
[consistent-output](https://github.com/not-an-aardvark/eslint-plugin-eslint-plugin/blob/master/docs/rules/consistent-output.md) | | | | enforce consistent use of output assertions in rule tests
51-
[fixer-return](https://github.com/not-an-aardvark/eslint-plugin-eslint-plugin/blob/master/docs/rules/fixer-return.md) | ✔️ | | | require fixer function to return a fix
50+
[consistent-output](https://github.com/not-an-aardvark/eslint-plugin-eslint-plugin/blob/master/docs/rules/consistent-output.md) | | | | enforce consistent use of `output` assertions in rule tests
51+
[fixer-return](https://github.com/not-an-aardvark/eslint-plugin-eslint-plugin/blob/master/docs/rules/fixer-return.md) | ✔️ | | | require fixer functions to return a fix
5252
[meta-property-ordering](https://github.com/not-an-aardvark/eslint-plugin-eslint-plugin/blob/master/docs/rules/meta-property-ordering.md) | | 🛠 | | enforce the order of meta properties
5353
[no-deprecated-context-methods](https://github.com/not-an-aardvark/eslint-plugin-eslint-plugin/blob/master/docs/rules/no-deprecated-context-methods.md) | | 🛠 | | disallow usage of deprecated methods on rule context objects
54-
[no-deprecated-report-api](https://github.com/not-an-aardvark/eslint-plugin-eslint-plugin/blob/master/docs/rules/no-deprecated-report-api.md) | ✔️ | 🛠 | | disallow use of the deprecated context.report() API
54+
[no-deprecated-report-api](https://github.com/not-an-aardvark/eslint-plugin-eslint-plugin/blob/master/docs/rules/no-deprecated-report-api.md) | ✔️ | 🛠 | | disallow the version of `context.report()` with multiple arguments
5555
[no-identical-tests](https://github.com/not-an-aardvark/eslint-plugin-eslint-plugin/blob/master/docs/rules/no-identical-tests.md) | ✔️ | 🛠 | | disallow identical tests
5656
[no-missing-placeholders](https://github.com/not-an-aardvark/eslint-plugin-eslint-plugin/blob/master/docs/rules/no-missing-placeholders.md) | ✔️ | | | disallow missing placeholders in rule report messages
5757
[no-only-tests](https://github.com/not-an-aardvark/eslint-plugin-eslint-plugin/blob/master/docs/rules/no-only-tests.md) | | | 💡 | disallow the test case property `only`
5858
[no-unused-placeholders](https://github.com/not-an-aardvark/eslint-plugin-eslint-plugin/blob/master/docs/rules/no-unused-placeholders.md) | ✔️ | | | disallow unused placeholders in rule report messages
59-
[no-useless-token-range](https://github.com/not-an-aardvark/eslint-plugin-eslint-plugin/blob/master/docs/rules/no-useless-token-range.md) | ✔️ | 🛠 | | disallow unnecessary calls to sourceCode.getFirstToken and sourceCode.getLastToken
60-
[prefer-object-rule](https://github.com/not-an-aardvark/eslint-plugin-eslint-plugin/blob/master/docs/rules/prefer-object-rule.md) | | 🛠 | | disallow rule exports where the export is a function.
61-
[prefer-output-null](https://github.com/not-an-aardvark/eslint-plugin-eslint-plugin/blob/master/docs/rules/prefer-output-null.md) | | 🛠 | | disallow invalid RuleTester test cases with the output the same as the code.
62-
[prefer-placeholders](https://github.com/not-an-aardvark/eslint-plugin-eslint-plugin/blob/master/docs/rules/prefer-placeholders.md) | | | | disallow template literals as report messages
63-
[prefer-replace-text](https://github.com/not-an-aardvark/eslint-plugin-eslint-plugin/blob/master/docs/rules/prefer-replace-text.md) | | | | require using replaceText instead of replaceTextRange.
59+
[no-useless-token-range](https://github.com/not-an-aardvark/eslint-plugin-eslint-plugin/blob/master/docs/rules/no-useless-token-range.md) | ✔️ | 🛠 | | disallow unnecessary calls to `sourceCode.getFirstToken()` and `sourceCode.getLastToken()`
60+
[prefer-object-rule](https://github.com/not-an-aardvark/eslint-plugin-eslint-plugin/blob/master/docs/rules/prefer-object-rule.md) | | 🛠 | | disallow rule exports where the export is a function
61+
[prefer-output-null](https://github.com/not-an-aardvark/eslint-plugin-eslint-plugin/blob/master/docs/rules/prefer-output-null.md) | | 🛠 | | disallow invalid RuleTester test cases where the `output` matches the `code`
62+
[prefer-placeholders](https://github.com/not-an-aardvark/eslint-plugin-eslint-plugin/blob/master/docs/rules/prefer-placeholders.md) | | | | require using placeholders for dynamic report messages
63+
[prefer-replace-text](https://github.com/not-an-aardvark/eslint-plugin-eslint-plugin/blob/master/docs/rules/prefer-replace-text.md) | | | | require using `replaceText()` instead of `replaceTextRange()`
6464
[report-message-format](https://github.com/not-an-aardvark/eslint-plugin-eslint-plugin/blob/master/docs/rules/report-message-format.md) | | | | enforce a consistent format for rule report messages
65-
[require-meta-docs-description](https://github.com/not-an-aardvark/eslint-plugin-eslint-plugin/blob/master/docs/rules/require-meta-docs-description.md) | | | | require rules to implement a meta.docs.description property with the correct format
66-
[require-meta-docs-url](https://github.com/not-an-aardvark/eslint-plugin-eslint-plugin/blob/master/docs/rules/require-meta-docs-url.md) | | 🛠 | | require rules to implement a meta.docs.url property
67-
[require-meta-fixable](https://github.com/not-an-aardvark/eslint-plugin-eslint-plugin/blob/master/docs/rules/require-meta-fixable.md) | ✔️ | | | require rules to implement a meta.fixable property
65+
[require-meta-docs-description](https://github.com/not-an-aardvark/eslint-plugin-eslint-plugin/blob/master/docs/rules/require-meta-docs-description.md) | | | | require rules to implement a `meta.docs.description` property with the correct format
66+
[require-meta-docs-url](https://github.com/not-an-aardvark/eslint-plugin-eslint-plugin/blob/master/docs/rules/require-meta-docs-url.md) | | 🛠 | | require rules to implement a `meta.docs.url` property
67+
[require-meta-fixable](https://github.com/not-an-aardvark/eslint-plugin-eslint-plugin/blob/master/docs/rules/require-meta-fixable.md) | ✔️ | | | require rules to implement a `meta.fixable` property
6868
[require-meta-has-suggestions](https://github.com/not-an-aardvark/eslint-plugin-eslint-plugin/blob/master/docs/rules/require-meta-has-suggestions.md) | | | | require suggestable rules to implement a `meta.hasSuggestions` property
69-
[require-meta-schema](https://github.com/not-an-aardvark/eslint-plugin-eslint-plugin/blob/master/docs/rules/require-meta-schema.md) | | 🛠 | | require rules to implement a meta.schema property
70-
[require-meta-type](https://github.com/not-an-aardvark/eslint-plugin-eslint-plugin/blob/master/docs/rules/require-meta-type.md) | | | | require rules to implement a meta.type property
69+
[require-meta-schema](https://github.com/not-an-aardvark/eslint-plugin-eslint-plugin/blob/master/docs/rules/require-meta-schema.md) | | 🛠 | | require rules to implement a `meta.schema` property
70+
[require-meta-type](https://github.com/not-an-aardvark/eslint-plugin-eslint-plugin/blob/master/docs/rules/require-meta-type.md) | | | | require rules to implement a `meta.type` property
7171
[test-case-property-ordering](https://github.com/not-an-aardvark/eslint-plugin-eslint-plugin/blob/master/docs/rules/test-case-property-ordering.md) | | 🛠 | | require the properties of a test case to be placed in a consistent order
7272
[test-case-shorthand-strings](https://github.com/not-an-aardvark/eslint-plugin-eslint-plugin/blob/master/docs/rules/test-case-shorthand-strings.md) | | 🛠 | | enforce consistent usage of shorthand strings for test cases with no options
7373
<!-- __END AUTOGENERATED TABLE__ -->

docs/rules/consistent-output.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Enforce consistent use of output assertions in rule tests (consistent-output)
1+
# Enforce consistent use of `output` assertions in rule tests (consistent-output)
22

33
When writing tests for a fixable rule with `RuleTester`, you can assert the autofix output of your test cases. However, it can be easy to forget to assert the output of a particular test case.
44

docs/rules/fixer-return.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Require fixer function to return a fix (fixer-return)
1+
# Require fixer functions to return a fix (fixer-return)
22

33
✔️ The `"extends": "plugin:eslint-plugin/recommended"` property in a configuration file enables this rule.
44

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

+7-2
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,15 @@
1-
# Disallow use of the deprecated context.report() API (no-deprecated-report-api)
1+
# Disallow the version of `context.report()` with multiple arguments (no-deprecated-report-api)
22

33
✔️ The `"extends": "plugin:eslint-plugin/recommended"` property in a configuration file enables this rule.
44

55
⚒️ The `--fix` option on the [command line](https://eslint.org/docs/user-guide/command-line-interface#-fix) can automatically fix some of the problems reported by this rule.
66

7-
ESLint has two APIs that rules can use to report problems. The [deprecated API](http://eslint.org/docs/developer-guide/working-with-rules-deprecated) accepts multiple arguments: `context.report(node, [loc], message)`. The ["new API"](http://eslint.org/docs/developer-guide/working-with-rules#contextreport) accepts a single argument: an object containing information about the reported problem. It is recommended that all rules use the new API.
7+
ESLint has two APIs that rules can use to report problems.
8+
9+
* The [deprecated API](http://eslint.org/docs/developer-guide/working-with-rules-deprecated) accepts multiple arguments: `context.report(node, [loc], message)`.
10+
* The ["new API"](http://eslint.org/docs/developer-guide/working-with-rules#contextreport) accepts a single argument: an object containing information about the reported problem.
11+
12+
It is recommended that all rules use the new API.
813

914
## Rule Details
1015

docs/rules/no-unused-placeholders.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ This rule aims to disallow unused placeholders in rule report messages.
66

77
## Rule Details
88

9-
Reports when a context.report call contains a data property that does not have a corresponding placeholder in the report message.
9+
Reports when a `context.report()` call contains a data property that does not have a corresponding placeholder in the report message.
1010

1111
Examples of **incorrect** code for this rule:
1212

docs/rules/no-useless-token-range.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Disallow unnecessary calls to sourceCode.getFirstToken and sourceCode.getLastToken (no-useless-token-range)
1+
# Disallow unnecessary calls to `sourceCode.getFirstToken()` and `sourceCode.getLastToken()` (no-useless-token-range)
22

33
✔️ The `"extends": "plugin:eslint-plugin/recommended"` property in a configuration file enables this rule.
44

@@ -8,7 +8,7 @@ AST nodes always start and end with tokens. As a result, the start index of the
88

99
## Rule Details
1010

11-
This rule aims to avoid unnecessary calls to `sourceCode.getFirstToken` and `sourceCode.getLastToken`.
11+
This rule aims to avoid unnecessary calls to `sourceCode.getFirstToken()` and `sourceCode.getLastToken()`.
1212

1313
Examples of **incorrect** code for this rule:
1414

docs/rules/prefer-object-rule.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Disallow rule exports where the export is a function. (prefer-object-rule)
1+
# Disallow rule exports where the export is a function (prefer-object-rule)
22

33
⚒️ The `--fix` option on the [command line](https://eslint.org/docs/user-guide/command-line-interface#-fix) can automatically fix some of the problems reported by this rule.
44

docs/rules/prefer-output-null.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Disallow invalid RuleTester test cases with the output the same as the code. (prefer-output-null)
1+
# Disallow invalid RuleTester test cases where the `output` matches the `code` (prefer-output-null)
22

33
⚒️ The `--fix` option on the [command line](https://eslint.org/docs/user-guide/command-line-interface#-fix) can automatically fix some of the problems reported by this rule.
44

docs/rules/prefer-placeholders.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Disallow template literals as report messages (prefer-placeholders)
1+
# Require using placeholders for dynamic report messages (prefer-placeholders)
22

33
Report messages in rules can have placeholders surrounded by curly brackets.
44

docs/rules/prefer-replace-text.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
1-
# Require using replaceText instead of replaceTextRange. (prefer-replace-text)
1+
# Require using `replaceText()` instead of `replaceTextRange()` (prefer-replace-text)
22

33
## Rule Details
44

5-
The rule reports an error if `replaceTextRange`'s first argument is an array of identical array elements. It can be easily replaced by `replaceText` to improve readability.
5+
The rule reports an error if `replaceTextRange()`'s first argument is an array of identical array elements. It can be easily replaced by `replaceText()` to improve readability.
66

77
Examples of **incorrect** code for this rule:
88

docs/rules/require-meta-docs-description.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Require rules to implement a meta.docs.description property with the correct format (require-meta-docs-description)
1+
# Require rules to implement a `meta.docs.description` property with the correct format (require-meta-docs-description)
22

33
Defining a clear and consistent description for each rule helps developers understand what they're used for.
44

docs/rules/require-meta-docs-url.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Require rules to implement a meta.docs.url property (require-meta-docs-url)
1+
# Require rules to implement a `meta.docs.url` property (require-meta-docs-url)
22

33
⚒️ The `--fix` option on the [command line](https://eslint.org/docs/user-guide/command-line-interface#-fix) can automatically fix some of the problems reported by this rule.
44

docs/rules/require-meta-fixable.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Require rules to implement a meta.fixable property (require-meta-fixable)
1+
# Require rules to implement a `meta.fixable` property (require-meta-fixable)
22

33
✔️ The `"extends": "plugin:eslint-plugin/recommended"` property in a configuration file enables this rule.
44

docs/rules/require-meta-schema.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Require rules to implement a meta.schema property (require-meta-schema)
1+
# Require rules to implement a `meta.schema` property (require-meta-schema)
22

33
⚒️ The `--fix` option on the [command line](https://eslint.org/docs/user-guide/command-line-interface#-fix) can automatically fix some of the problems reported by this rule.
44

docs/rules/require-meta-type.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
1-
# Require rules to implement a meta.type property (require-meta-type)
1+
# Require rules to implement a `meta.type` property (require-meta-type)
22

33
ESLint v5.9.0 introduces a new `--fix-type` option for the command line interface. This option allows users to filter the type of fixes applied when using `--fix`.
44

5-
Fixes in custom rules will not be applied when using `--fix-type` unless they include a meta.type field.
5+
Fixes in custom rules will not be applied when using `--fix-type` unless they include a `meta.type` field.
66

77
## Rule Details
88

lib/rules/consistent-output.js

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/**
2-
* @fileoverview Enforce consistent use of output assertions in rule tests
2+
* @fileoverview Enforce consistent use of `output` assertions in rule tests
33
* @author Teddy Katz
44
*/
55

@@ -15,7 +15,7 @@ module.exports = {
1515
meta: {
1616
type: 'suggestion',
1717
docs: {
18-
description: 'enforce consistent use of output assertions in rule tests',
18+
description: 'enforce consistent use of `output` assertions in rule tests',
1919
category: 'Tests',
2020
recommended: false,
2121
},

lib/rules/fixer-return.js

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/**
2-
* @fileoverview Require fixer function to return a fix
2+
* @fileoverview require fixer functions to return a fix
33
* @author 薛定谔的猫<[email protected]>
44
*/
55

@@ -20,7 +20,7 @@ module.exports = {
2020
meta: {
2121
type: 'problem',
2222
docs: {
23-
description: 'require fixer function to return a fix',
23+
description: 'require fixer functions to return a fix',
2424
category: 'Possible Errors',
2525
recommended: true,
2626
},

lib/rules/no-deprecated-report-api.js

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/**
2-
* @fileoverview disallow use of the deprecated context.report() API
2+
* @fileoverview Disallow the version of `context.report()` with multiple arguments
33
* @author Teddy Katz
44
*/
55

@@ -15,7 +15,7 @@ module.exports = {
1515
meta: {
1616
type: 'suggestion',
1717
docs: {
18-
description: 'disallow use of the deprecated context.report() API',
18+
description: 'disallow the version of `context.report()` with multiple arguments',
1919
category: 'Rules',
2020
recommended: true,
2121
},

lib/rules/no-useless-token-range.js

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/**
2-
* @fileoverview Disallow unnecessary calls to sourceCode.getFirstToken and sourceCode.getLastToken
2+
* @fileoverview Disallow unnecessary calls to `sourceCode.getFirstToken()` and `sourceCode.getLastToken()`
33
* @author Teddy Katz
44
*/
55

@@ -15,7 +15,7 @@ module.exports = {
1515
meta: {
1616
type: 'suggestion',
1717
docs: {
18-
description: 'disallow unnecessary calls to sourceCode.getFirstToken and sourceCode.getLastToken',
18+
description: 'disallow unnecessary calls to `sourceCode.getFirstToken()` and `sourceCode.getLastToken()`',
1919
category: 'Rules',
2020
recommended: true,
2121
},
@@ -33,7 +33,7 @@ module.exports = {
3333
/**
3434
* Determines whether a second argument to getFirstToken or getLastToken changes the output of the function.
3535
* This occurs when the second argument exists and is not an object literal, or has keys other than `includeComments`.
36-
* @param {ASTNode} arg The second argument to `sourceCode.getFirstToken` or `sourceCode.getLastToken`
36+
* @param {ASTNode} arg The second argument to `sourceCode.getFirstToken()` or `sourceCode.getLastToken()`
3737
* @returns {boolean} `true` if the argument affects the output of getFirstToken or getLastToken
3838
*/
3939
function affectsGetTokenOutput (arg) {

lib/rules/prefer-object-rule.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ module.exports = {
1414
meta: {
1515
type: 'suggestion',
1616
docs: {
17-
description: 'disallow rule exports where the export is a function.',
17+
description: 'disallow rule exports where the export is a function',
1818
category: 'Rules',
1919
recommended: false,
2020
},

lib/rules/prefer-output-null.js

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/**
2-
* @fileoverview disallows invalid RuleTester test cases with the output the same as the code.
2+
* @fileoverview disallows invalid RuleTester test cases where the `output` matches the `code`
33
* @author 薛定谔的猫<[email protected]>
44
*/
55

@@ -15,7 +15,7 @@ module.exports = {
1515
meta: {
1616
type: 'suggestion',
1717
docs: {
18-
description: 'disallow invalid RuleTester test cases with the output the same as the code.',
18+
description: 'disallow invalid RuleTester test cases where the `output` matches the `code`',
1919
category: 'Tests',
2020
recommended: false,
2121
},

lib/rules/prefer-placeholders.js

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/**
2-
* @fileoverview disallow template literals as report messages
2+
* @fileoverview require using placeholders for dynamic report messages
33
* @author Teddy Katz
44
*/
55

@@ -16,7 +16,7 @@ module.exports = {
1616
meta: {
1717
type: 'suggestion',
1818
docs: {
19-
description: 'disallow template literals as report messages',
19+
description: 'require using placeholders for dynamic report messages',
2020
category: 'Rules',
2121
recommended: false,
2222
},

lib/rules/prefer-replace-text.js

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/**
2-
* @fileoverview prefer using replaceText instead of replaceTextRange.
2+
* @fileoverview prefer using `replaceText()` instead of `replaceTextRange()`
33
* @author 薛定谔的猫<[email protected]>
44
*/
55

@@ -15,7 +15,7 @@ module.exports = {
1515
meta: {
1616
type: 'suggestion',
1717
docs: {
18-
description: 'require using replaceText instead of replaceTextRange.',
18+
description: 'require using `replaceText()` instead of `replaceTextRange()`',
1919
category: 'Rules',
2020
recommended: false,
2121
},

lib/rules/require-meta-docs-description.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ module.exports = {
1313
meta: {
1414
type: 'suggestion',
1515
docs: {
16-
description: 'require rules to implement a meta.docs.description property with the correct format',
16+
description: 'require rules to implement a `meta.docs.description` property with the correct format',
1717
category: 'Rules',
1818
recommended: false, // TODO: enable it in a major release.
1919
},

lib/rules/require-meta-docs-url.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ module.exports = {
1919
meta: {
2020
type: 'suggestion',
2121
docs: {
22-
description: 'require rules to implement a meta.docs.url property',
22+
description: 'require rules to implement a `meta.docs.url` property',
2323
category: 'Rules',
2424
recommended: false,
2525
},

lib/rules/require-meta-fixable.js

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/**
2-
* @fileoverview require rules to implement a meta.fixable property
2+
* @fileoverview require rules to implement a `meta.fixable` property
33
* @author Teddy Katz
44
*/
55

@@ -15,7 +15,7 @@ module.exports = {
1515
meta: {
1616
type: 'problem',
1717
docs: {
18-
description: 'require rules to implement a meta.fixable property',
18+
description: 'require rules to implement a `meta.fixable` property',
1919
category: 'Rules',
2020
recommended: true,
2121
},

0 commit comments

Comments
 (0)