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:
authorMichal Čihař <mcihar@suse.cz>2012-04-26 18:05:57 +0400
committerMichal Čihař <mcihar@suse.cz>2012-04-26 18:05:57 +0400
commiteb8ebf466799f6a9a3c1e4ea08b84d0f99e5489c (patch)
tree2b416eeabc3ed038977a03658316aa877e93ffef /build.xml
parented6d9776dc165a38004fd620b9bed4f25afadfd2 (diff)
Exclude coding standard files
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 eff834f884..731b2f9207 100644
--- a/build.xml
+++ b/build.xml
@@ -38,7 +38,7 @@
<arg line="${source_comma_sep}
xml
codesize,design,naming,unusedcode
- --exclude test,build,tcpdf,php-gettext,bfShapeFiles
+ --exclude test,build,tcpdf,php-gettext,bfShapeFiles,PMAStandard
--reportfile ${basedir}/build/logs/pmd.xml" />
</exec>
</target>
@@ -47,6 +47,7 @@
<exec executable="phpcpd">
<arg line="--log-pmd ${basedir}/build/logs/pmd-cpd.xml
--exclude test
+ --exclude PMAStandard
--exclude build
--exclude libraries/tcpdf
--exclude libraries/php-gettext
@@ -59,6 +60,7 @@
<exec executable="phploc">
<arg line="--log-csv ${basedir}/build/logs/phploc.csv
--exclude test
+ --exclude PMAStandard
--exclude build
--exclude libraries/tcpdf
--exclude libraries/php-gettext
@@ -70,7 +72,7 @@
<target name="phpcs" description="Generate checkstyle.xml using PHP_CodeSniffer excluding test, tcpdf directories">
<exec executable="phpcs">
<arg line="
- --ignore=*/php-gettext/*,*/tcpdf/*,*/canvg/*,*/codemirror/*,*/highcharts/*,*/openlayers/*,*/jquery/*,*/build/*,*/bfShapeFiles/*
+ --ignore=*/php-gettext/*,*/tcpdf/*,*/canvg/*,*/codemirror/*,*/highcharts/*,*/openlayers/*,*/jquery/*,*/build/*,*/bfShapeFiles/*,*/PMAStandard/*
--report=checkstyle
--report-file=${basedir}/build/logs/checkstyle.xml
--standard=PMAStandard