Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/phpmyadmin/phpmyadmin.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMadhura Jayaratne <madhura.cj@gmail.com>2015-04-27 15:16:51 +0300
committerMadhura Jayaratne <madhura.cj@gmail.com>2015-04-27 15:16:51 +0300
commit3fe20b3cdf59f3f24b5fcb17e8c3600a30568f3d (patch)
tree22976aa067b5e502c67c4900278e3af6bb621ffb /build.xml
parent88514e5b8b6ffafe528ccf18d091cb2358db2016 (diff)
Exclude sql-formatter
Signed-off-by: Madhura Jayaratne <madhura.cj@gmail.com>
Diffstat (limited to 'build.xml')
-rw-r--r--build.xml6
1 files changed, 4 insertions, 2 deletions
diff --git a/build.xml b/build.xml
index 41ab34e7ec..de75690b79 100644
--- a/build.xml
+++ b/build.xml
@@ -55,7 +55,7 @@
<arg line="${source_comma_sep}
xml
codesize,design,naming,unusedcode
- --exclude test,build,tcpdf,php-gettext,bfShapeFiles,PMAStandard,phpseclib,recaptchalib.php,swekey.php,vendor
+ --exclude test,build,tcpdf,php-gettext,bfShapeFiles,PMAStandard,phpseclib,recaptchalib.php,swekey.php,vendor,sql-formatter
--reportfile '${basedir}/build/logs/pmd.xml'" />
</exec>
</target>
@@ -73,6 +73,7 @@
--exclude libraries/phpseclib
--exclude libraries/plugins/auth/recaptchalib.php
--exclude libraries/plugins/auth/swekey/swekey.php
+ --exclude libraries/sql-formatter/
${source}" />
</exec>
</target>
@@ -90,6 +91,7 @@
--exclude libraries/phpseclib
--exclude libraries/plugins/auth/recaptchalib.php
--exclude libraries/plugins/auth/swekey/swekey.php
+ --exclude libraries/sql-formatter/
${source}" />
</exec>
</target>
@@ -97,7 +99,7 @@
<target name="phpcs" description="Generate checkstyle.xml using PHP_CodeSniffer excluding third party libraries">
<exec executable="phpcs">
<arg line="
- --ignore=*/php-gettext/*,*/vendor/*,*/tcpdf/*,*/canvg/*,*/codemirror/*,*/openlayers/*,*/jquery/*,*/jqplot/*,*/build/*,*/bfShapeFiles/*,*/PMAStandard/*,*/phpseclib/*,*/recaptchalib.php,*/swekey.php
+ --ignore=*/php-gettext/*,*/vendor/*,*/tcpdf/*,*/canvg/*,*/codemirror/*,*/openlayers/*,*/jquery/*,*/jqplot/*,*/build/*,*/bfShapeFiles/*,*/PMAStandard/*,*/phpseclib/*,*/recaptchalib.php,*/swekey.php,*/sql-formatter/*
--report=checkstyle
--extensions=php
--report-file='${basedir}/build/logs/checkstyle.xml'