Skip to content

Commit

Permalink
Update scrutinizer config
Browse files Browse the repository at this point in the history
  • Loading branch information
Synchro committed Nov 6, 2014
1 parent 479968f commit 63a6397
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions .scrutinizer.yml
Expand Up @@ -101,7 +101,6 @@ tools:
- 'test/*'
- 'vendor/*'


# Analyzes the size and structure of a PHP project.
php_pdepend:
enabled: true
Expand All @@ -121,8 +120,10 @@ tools:
enabled: true
naming:
enabled: true
property_name: ^[_a-z][a-zA-Z0-9]*$ #Allow leading underscores
method_name: ^(?:[_a-z]|__)[a-zA-Z0-9]*$ #Allow leading underscores
property_name: ^[_a-zA-Z][a-zA-Z0-9_]*$ #Allow leading cap and underscores
method_name: ^(?:[_a-z]|__)[a-zA-Z0-9_]*$ #Allow underscores
isser_method_name: ^(?:[_a-z]|__)[a-zA-Z0-9]*$
local_variable: ^[a-z][a-zA-Z0-9_]*$
filter:
excluded_paths:
- 'docs/*'
Expand Down

0 comments on commit 63a6397

Please sign in to comment.