Skip to content

Commit c35ec06

Browse files
committed
Fix privatePropertyPattern to contain underscores
1 parent 1864182 commit c35ec06

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

detekt.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -319,7 +319,7 @@ naming:
319319
active: true
320320
constantPattern: '[A-Z][_A-Z0-9]*'
321321
propertyPattern: '[A-Za-z][_A-Za-z0-9]*'
322-
privatePropertyPattern: '(_)?[A-Za-z][A-Za-z0-9]*'
322+
privatePropertyPattern: '(_)?[A-Za-z][_A-Za-z0-9]*'
323323
VariableMaxLength:
324324
active: false
325325
maximumVariableNameLength: 64

0 commit comments

Comments
 (0)