diff options
-rw-r--r-- | build/build.xml | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/build/build.xml b/build/build.xml index c685a6f516..c033b1fefd 100644 --- a/build/build.xml +++ b/build/build.xml @@ -78,6 +78,13 @@ <exec command="phpBB/vendor/bin/phpcs -s --extensions=php + --standard=build/code_sniffer/ruleset-php-strict.xml + --ignore=phpBB/phpbb/db/migration/data/v30x/* + phpBB/phpbb" + dir="." checkreturn="true" passthru="true" /> + <exec command="phpBB/vendor/bin/phpcs + -s + --extensions=php --standard=build/code_sniffer/ruleset-php-legacy.xml --ignore=phpBB/cache/* --ignore=phpBB/develop/* @@ -89,13 +96,6 @@ --ignore=phpBB/vendor/* phpBB" dir="." checkreturn="true" passthru="true" /> - <exec command="phpBB/vendor/bin/phpcs - -s - --extensions=php - --standard=build/code_sniffer/ruleset-php-strict.xml - --ignore=phpBB/phpbb/db/migration/data/v30x/* - phpBB/phpbb" - dir="." checkreturn="true" passthru="true" /> </target> <target name="docs"> |