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-misleading-character-class
1 parent c153084 commit 2de5742Copy full SHA for 2de5742
lib/types/rules/possible-errors.d.ts
@@ -391,7 +391,17 @@ export interface PossibleErrors extends Linter.RulesRecord {
391
* @since 5.3.0
392
* @see https://eslint.org/docs/rules/no-misleading-character-class
393
*/
394
- "no-misleading-character-class": Linter.RuleEntry<[]>;
+ "no-misleading-character-class": Linter.RuleEntry<
395
+ [
396
+ Partial<{
397
+ /**
398
+ * @since 9.3.0
399
+ * @default false
400
+ */
401
+ allowEscape: boolean;
402
+ }>,
403
+ ]
404
+ >;
405
406
/**
407
* Rule to disallow calling global object properties as functions.
0 commit comments