From a4f7f70c9d54f7516a0f10361cdda2a06ff2292c Mon Sep 17 00:00:00 2001 From: jrf Date: Thu, 28 Jun 2018 02:30:40 +0000 Subject: [PATCH] Build/Tools: Update PHPCS ruleset for WP Core and related Composer setup. `.gitignore` + `svn:ignore`: * Add the typical filenames of overloaded PHPCS configs to `.gitignore`. Composer: * Use the `develop` (Packagist `dev-master`) version of WPCS as it contains lots of bugfixes. * Remove the PHPCS dependency. This is a dependency of WPCS, not of WP Core itself. This will also make sure that the PHPCS version used is always one which is supported by WPCS. * Refreshed the `composer.lock` file. PHPCS ruleset: * Removed a reference to a sniff which doesn't exist in WPCS yet. * Use the PHPCS 3.x `basepath` option to clean up the file paths PHPCS shows in the reports. * Use the PHPCS 3.x `parallel` option to enable parallel scanning whenever possible to speed up the scans. * Whitelist the `wp-includes/l10n.php` file from issues being reported by the `WordPress.WP.I18n` sniff. Fixes #44366. Built from https://develop.svn.wordpress.org/trunk@43348 git-svn-id: http://core.svn.wordpress.org/trunk@43176 1a063a9b-81f0-0310-95a4-ce76da25c4cd --- wp-includes/version.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/wp-includes/version.php b/wp-includes/version.php index c30fab44a8..462ab5f385 100644 --- a/wp-includes/version.php +++ b/wp-includes/version.php @@ -4,7 +4,7 @@ * * @global string $wp_version */ -$wp_version = '5.0-alpha-43347'; +$wp_version = '5.0-alpha-43348'; /** * Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.