Skip to content

Commit 8843656

Browse files
authored
fix: add missing types for no-underscore-dangle rule (#18931)
1 parent 92cde5c commit 8843656

1 file changed

Lines changed: 25 additions & 0 deletions

File tree

lib/types/rules/stylistic-issues.d.ts

Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1385,10 +1385,35 @@ export interface StylisticIssues extends Linter.RulesRecord {
13851385
* @default false
13861386
*/
13871387
allowAfterSuper: boolean;
1388+
/**
1389+
* @since 6.7.0
1390+
* @default false
1391+
*/
1392+
allowAfterThisConstructor: boolean;
13881393
/**
13891394
* @default false
13901395
*/
13911396
enforceInMethodNames: boolean;
1397+
/**
1398+
* @since 8.15.0
1399+
* @default false
1400+
*/
1401+
enforceInClassFields: boolean;
1402+
/**
1403+
* @since 8.31.0
1404+
* @default true
1405+
*/
1406+
allowInArrayDestructuring: boolean;
1407+
/**
1408+
* @since 8.31.0
1409+
* @default true
1410+
*/
1411+
allowInObjectDestructuring: boolean;
1412+
/**
1413+
* @since 7.7.0
1414+
* @default true
1415+
*/
1416+
allowFunctionParams: boolean;
13921417
}>,
13931418
]
13941419
>;

0 commit comments

Comments
 (0)