Skip to content

Commit

Permalink
chore: remove obsolete suggestion property (#1224)
Browse files Browse the repository at this point in the history
  • Loading branch information
bmish committed Aug 28, 2022
1 parent a291ccd commit 828651b
Show file tree
Hide file tree
Showing 5 changed files with 0 additions and 5 deletions.
1 change: 0 additions & 1 deletion src/rules/no-done-callback.ts
Expand Up @@ -30,7 +30,6 @@ export default createRule({
category: 'Best Practices',
description: 'Avoid using a callback in asynchronous tests and hooks',
recommended: 'error',
suggestion: true,
},
messages: {
noDoneCallback:
Expand Down
1 change: 0 additions & 1 deletion src/rules/no-focused-tests.ts
Expand Up @@ -8,7 +8,6 @@ export default createRule({
category: 'Best Practices',
description: 'Disallow focused tests',
recommended: 'error',
suggestion: true,
},
messages: {
focusedTest: 'Unexpected focused test.',
Expand Down
1 change: 0 additions & 1 deletion src/rules/prefer-equality-matcher.ts
Expand Up @@ -16,7 +16,6 @@ export default createRule({
category: 'Best Practices',
description: 'Suggest using the built-in equality matchers',
recommended: false,
suggestion: true,
},
messages: {
useEqualityMatcher: 'Prefer using one of the equality matchers instead',
Expand Down
1 change: 0 additions & 1 deletion src/rules/prefer-expect-assertions.ts
Expand Up @@ -65,7 +65,6 @@ export default createRule<[RuleOptions], MessageIds>({
description:
'Suggest using `expect.assertions()` OR `expect.hasAssertions()`',
recommended: false,
suggestion: true,
},
messages: {
hasAssertionsTakesNoArguments:
Expand Down
1 change: 0 additions & 1 deletion src/rules/prefer-strict-equal.ts
Expand Up @@ -13,7 +13,6 @@ export default createRule({
category: 'Best Practices',
description: 'Suggest using `toStrictEqual()`',
recommended: false,
suggestion: true,
},
messages: {
useToStrictEqual: 'Use `toStrictEqual()` instead',
Expand Down

0 comments on commit 828651b

Please sign in to comment.