Make WordPress Core


Ignore:
Timestamp:
08/17/2018 01:50:26 AM (6 years ago)
Author:
pento
Message:

Coding Standards: Upgrade WPCS to 1.0.0

WPCS 1.0.0 includes a bunch of new auto-fixers, which drops the number of coding standards issues across WordPress significantly. Prior to running the auto-fixers, there were 15,312 issues detected. With this commit, we now drop to 4,769 issues.

This change includes three notable additions:

  • Multiline function calls must now put each parameter on a new line.
  • Auto-formatting files is now part of the grunt precommit script.
  • Auto-fixable coding standards issues will now cause Travis failures.

Fixes #44600.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/tests/phpunit/tests/term/wpGenerateTagCloud.php

    r42343 r43571  
    8484
    8585        $found = wp_generate_tag_cloud(
    86             $tags, array(
     86            $tags,
     87            array(
    8788                'hide_empty' => false,
    8889            )
     
    105106
    106107        $found = wp_generate_tag_cloud(
    107             $tags, array(
     108            $tags,
     109            array(
    108110                'hide_empty' => false,
    109111                'format'     => 'array',
     
    127129
    128130        $found = wp_generate_tag_cloud(
    129             $tags, array(
     131            $tags,
     132            array(
    130133                'hide_empty' => false,
    131134                'format'     => 'list',
     
    154157
    155158        $found = wp_generate_tag_cloud(
    156             $tags, array(
     159            $tags,
     160            array(
    157161                'hide_empty' => false,
    158162            )
     
    180184
    181185        $found = wp_generate_tag_cloud(
    182             $tags, array(
     186            $tags,
     187            array(
    183188                'hide_empty' => false,
    184189                'format'     => 'list',
     
    209214            array(
    210215                'include' => $term_ids,
    211             ), 'wptests_tax'
     216            ),
     217            'wptests_tax'
    212218        );
    213219
    214220        $actual = wp_generate_tag_cloud(
    215             $term_objects, array(
     221            $term_objects,
     222            array(
    216223                'format'           => 'array',
    217224                'topic_count_text' => array(
     
    243250            array(
    244251                'include' => $term_ids,
    245             ), 'wptests_tax'
     252            ),
     253            'wptests_tax'
    246254        );
    247255
    248256        $actual = wp_generate_tag_cloud(
    249             $term_objects, array(
     257            $term_objects,
     258            array(
    250259                'format'                    => 'array',
    251260                'topic_count_text_callback' => array( $this, 'topic_count_text_callback' ),
     
    268277
    269278        $term_objects = get_terms(
    270             'wptests_tax', array(
     279            'wptests_tax',
     280            array(
    271281                'include' => $term_ids,
    272282            )
Note: See TracChangeset for help on using the changeset viewer.