We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
no-unsafe-negation
1 parent 8843656 commit 561cadcCopy full SHA for 561cadc
1 file changed
lib/types/rules/possible-errors.d.ts
@@ -552,7 +552,17 @@ export interface PossibleErrors extends Linter.RulesRecord {
552
* @since 3.3.0
553
* @see https://eslint.org/docs/rules/no-unsafe-negation
554
*/
555
- "no-unsafe-negation": Linter.RuleEntry<[]>;
+ "no-unsafe-negation": Linter.RuleEntry<
556
+ [
557
+ Partial<{
558
+ /**
559
+ * @since 6.6.0
560
+ * @default false
561
+ */
562
+ enforceForOrderingRelations: boolean;
563
+ }>,
564
+ ]
565
+ >;
566
567
/**
568
* Disallow use of optional chaining in contexts where the `undefined` value is not allowed.
0 commit comments