Skip to content

Commit

Permalink
Update supplementary files
Browse files Browse the repository at this point in the history
  • Loading branch information
Omranic committed Oct 24, 2016
1 parent 36949e5 commit bbad662
Show file tree
Hide file tree
Showing 3 changed files with 20 additions and 3 deletions.
5 changes: 4 additions & 1 deletion .codeclimate.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,4 +32,7 @@ ratings:
- "**.php"
- "**.py"
- "**.rb"
exclude_paths: []
exclude_paths:
- "build/*"
- "tests/*"
- "vendor/*"
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
/build
/vendor
/node_modules
composer.phar
composer.lock
16 changes: 14 additions & 2 deletions .scrutinizer.yml
Original file line number Diff line number Diff line change
Expand Up @@ -111,6 +111,8 @@ checks:

filter:
excluded_paths:
- 'build/*'
- 'tests/*'
- 'vendor/*'

tools:
Expand All @@ -132,21 +134,27 @@ tools:
standard: PSR2
filter:
excluded_paths:
- 'build/*'
- 'tests/*'
- 'vendor/*'


# PHP Copy/Paste Detector
php_cpd:
enabled: true
excluded_dirs:
- 'build'
- 'tests'
- 'vendor'


# Analyzes the size and structure of a PHP project.
php_loc:
enabled: true
excluded_dirs:
- vendor
- 'build'
- 'tests'
- 'vendor'


# PHP Mess Detector
Expand All @@ -161,14 +169,18 @@ tools:
- controversial
filter:
excluded_paths:
- 'build/*'
- 'tests/*'
- 'vendor/*'


# PHP PDepend (https://scrutinizer-ci.com/docs/tools/php/pdepend/)
php_pdepend:
enabled: true
excluded_dirs:
- vendor
- 'build'
- 'tests'
- 'vendor'


# PHP Analyzer (https://scrutinizer-ci.com/docs/tools/php/php-analyzer/)
Expand Down

0 comments on commit bbad662

Please sign in to comment.