Skip to content

Commit

Permalink
refactor description
Browse files Browse the repository at this point in the history
  • Loading branch information
knapcp3 committed Jan 28, 2025
1 parent 911dee9 commit 7a915e8
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions plugins/eslint-plugin-omnicalculator/rules/nullish-utils.cjs
Original file line number Diff line number Diff line change
Expand Up @@ -8,15 +8,15 @@ module.exports = {
type: 'problem',
docs: {
description:
'Use isNullish and isDefined utils when checking for nullish and not-nullish values.',
'Enforce the usage of isNullish and isDefined utility functions for checking nullish and non-nullish values.',
category: 'Best Practices',
recommended: true,
},
fixable: 'code',
schema: [],
messages: {
useIsNullish:
'Please use isNullish and isDefined utils when checking for nullish and not-nullish values.',
'Please use isNullish and isDefined utility functions for checking nullish and non-nullish values.',
},
},
create(context) {
Expand Down

0 comments on commit 7a915e8

Please sign in to comment.