Browse Source

Add setup for scrutinizer.

Laurent Destailleur 11 years ago
parent
commit
7c6f4180d0
1 changed files with 19 additions and 0 deletions
  1. 19 0
      .scrutinizer.yml

+ 19 - 0
.scrutinizer.yml

@@ -0,0 +1,19 @@
+# .scrutinizer.yml
+imports:
+    - javascript
+    - php
+
+filter:
+    excluded_paths: [build/*, dev/*, doc/*, test/*, htdocs/includes/*]
+
+tools:
+    # Similar Code Detector
+    php_sim: true
+
+    # Metrics
+    php_pdepend: true
+
+    # Some Metrics + Bug Detection/Auto-Fixes
+    php_analyzer: true
+
+## Overwrite as needed here.