Skip to content
This repository was archived by the owner on Oct 3, 2024. It is now read-only.

Commit 9a7e539

Browse files
Fix S1125 (no-redundant-boolean): Improve message (#369)
1 parent b26b5c7 commit 9a7e539

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/rules/no-redundant-boolean.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ import docsUrl from '../utils/docs-url';
2626
const rule: TSESLint.RuleModule<string, string[]> = {
2727
meta: {
2828
messages: {
29-
removeUnnecessaryBoolean: 'Remove the unnecessary boolean literal.',
29+
removeUnnecessaryBoolean: 'Refactor the code to avoid using this boolean literal.',
3030
},
3131
schema: [],
3232
type: 'suggestion',

0 commit comments

Comments
 (0)