Skip to content

Commit

Permalink
Fix description
Browse files Browse the repository at this point in the history
  • Loading branch information
mkrl committed Dec 26, 2023
1 parent 9239383 commit c2097ce
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions eslint-local-rules.js
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ module.exports = {
fixable: null,
docs: {
description:
'Ensure a deprecation warning is preceded by a TODO comment',
'Ensure a deprecation warning is preceded by a TODO comment with a ticket reference',
category: 'Picasso Best Practices',
recommended: false,
},
Expand All @@ -29,7 +29,7 @@ module.exports = {
if (!hasTodoComment) {
context.report({
node,
message: `${node.callee.name} must be preceded by a TODO comment `,
message: `${node.callee.name} must be preceded by a TODO comment with a ticket reference `,
})
}
}
Expand Down

0 comments on commit c2097ce

Please sign in to comment.