diff --git a/README.md b/README.md index 9398525d..6dd06c6c 100644 --- a/README.md +++ b/README.md @@ -49,9 +49,9 @@ Then configure the rules you want to use under the rules section. Name | ✔️ | 🛠 | Description ----- | ----- | ----- | ----- [consistent-output](https://github.com/not-an-aardvark/eslint-plugin-eslint-plugin/blob/master/docs/rules/consistent-output.md) | | | Enforces consistent use of output assertions in rule tests -[fixer-return](https://github.com/not-an-aardvark/eslint-plugin-eslint-plugin/blob/master/docs/rules/fixer-return.md) | | | Enforces always return from a fixer function +[fixer-return](https://github.com/not-an-aardvark/eslint-plugin-eslint-plugin/blob/master/docs/rules/fixer-return.md) | ✔️ | | Enforces always return from a fixer function [no-deprecated-report-api](https://github.com/not-an-aardvark/eslint-plugin-eslint-plugin/blob/master/docs/rules/no-deprecated-report-api.md) | ✔️ | 🛠 | Prohibits the deprecated `context.report(node, message)` API -[no-identical-tests](https://github.com/not-an-aardvark/eslint-plugin-eslint-plugin/blob/master/docs/rules/no-identical-tests.md) | | 🛠 | Disallows identical tests +[no-identical-tests](https://github.com/not-an-aardvark/eslint-plugin-eslint-plugin/blob/master/docs/rules/no-identical-tests.md) | ✔️ | 🛠 | Disallows identical tests [no-missing-placeholders](https://github.com/not-an-aardvark/eslint-plugin-eslint-plugin/blob/master/docs/rules/no-missing-placeholders.md) | ✔️ | | Disallows missing placeholders in rule report messages [no-useless-token-range](https://github.com/not-an-aardvark/eslint-plugin-eslint-plugin/blob/master/docs/rules/no-useless-token-range.md) | ✔️ | 🛠 | Disallows unnecessary calls to sourceCode.getFirstToken and sourceCode.getLastToken [prefer-output-null](https://github.com/not-an-aardvark/eslint-plugin-eslint-plugin/blob/master/docs/rules/prefer-output-null.md) | | | Disallows invalid RuleTester test cases with the output the same as the code. diff --git a/lib/rules/fixer-return.js b/lib/rules/fixer-return.js index e4b1ca68..d349acc8 100644 --- a/lib/rules/fixer-return.js +++ b/lib/rules/fixer-return.js @@ -20,7 +20,7 @@ module.exports = { docs: { description: 'Expected fixer function to always return a value.', category: 'Possible Errors', - recommended: false, + recommended: true, }, fixable: null, }, diff --git a/lib/rules/no-identical-tests.js b/lib/rules/no-identical-tests.js index f05e8540..3275d1d1 100644 --- a/lib/rules/no-identical-tests.js +++ b/lib/rules/no-identical-tests.js @@ -16,7 +16,7 @@ module.exports = { docs: { description: 'disallow identical tests', category: 'Tests', - recommended: false, + recommended: true, }, fixable: 'code', schema: [],