@@ -359,21 +359,21 @@ export async function typescript(
359
359
modifiers : [ "destructured" ] ,
360
360
} ,
361
361
{
362
- selector : "memberLike" ,
362
+ selector : [ "autoAccessor" , "parameterProperty" , "property" ] ,
363
363
filter : { regex : "^[A-Z0-9_]+$" , match : true } ,
364
364
format : [ "UPPER_CASE" ] ,
365
365
leadingUnderscore : "forbid" ,
366
366
trailingUnderscore : "forbid" ,
367
367
} ,
368
368
{
369
- selector : "memberLike" ,
369
+ selector : [ "autoAccessor" , "parameterProperty" , "property" ] ,
370
370
format : [ "camelCase" , "PascalCase" ] ,
371
371
prefix : [ "m_" , "M_" ] ,
372
372
leadingUnderscore : "forbid" ,
373
373
trailingUnderscore : "forbid" ,
374
374
} ,
375
375
{
376
- selector : "memberLike" ,
376
+ selector : [ "autoAccessor" , "parameterProperty" , "property" ] ,
377
377
filter : { regex : "_[^_]+" , match : true } ,
378
378
format : [ "camelCase" , "PascalCase" ] ,
379
379
modifiers : [ "readonly" ] ,
@@ -382,7 +382,7 @@ export async function typescript(
382
382
trailingUnderscore : "forbid" ,
383
383
} ,
384
384
{
385
- selector : "memberLike" ,
385
+ selector : [ "autoAccessor" , "parameterProperty" , "property" ] ,
386
386
format : [ "camelCase" , "PascalCase" , "UPPER_CASE" ] ,
387
387
modifiers : [ "readonly" ] ,
388
388
leadingUnderscore : "allow" ,
0 commit comments