Skip to content

Commit

Permalink
Merge pull request #4256 from nextcloud/solve_static_code_warnings
Browse files Browse the repository at this point in the history
Fix Codacy Warnings -  Ensure Composable Function Names Start with a Capital Letter
  • Loading branch information
mahibi authored Sep 24, 2024
2 parents 715017d + 78a55c0 commit 3d9d694
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion detekt.yml
Original file line number Diff line number Diff line change
Expand Up @@ -278,7 +278,7 @@ naming:
minimumFunctionNameLength: 3
FunctionNaming:
active: true
functionPattern: '^([a-z$][a-zA-Z$0-9]*)|(`.*`)$'
functionPattern: '^([a-z$A-Z][a-zA-Z$0-9]*)|(`.*`)$'
excludeClassPattern: '$^'
ignoreOverridden: true
excludes:
Expand Down

0 comments on commit 3d9d694

Please sign in to comment.