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/query.php

    r42343 r43571  
    9696        register_taxonomy( 'wptests_tax', 'post' );
    9797        $terms = self::factory()->term->create_many(
    98             2, array(
     98            2,
     99            array(
    99100                'taxonomy' => 'wptests_tax',
    100101            )
     
    182183            array(
    183184                'cat' => $c1,
    184             ), '/'
     185            ),
     186            '/'
    185187        );
    186188
     
    225227            array(
    226228                'cat' => implode( ',', array( $c1, $c2 ) ),
    227             ), '/'
     229            ),
     230            '/'
    228231        );
    229232
     
    271274            array(
    272275                'cat' => array( $c1, $c2 ),
    273             ), '/'
     276            ),
     277            '/'
    274278        );
    275279
     
    307311            array(
    308312                'tag' => $t1->slug,
    309             ), '/'
     313            ),
     314            '/'
    310315        );
    311316
     
    350355            array(
    351356                'tag' => implode( ',', array( $c1->slug, $c2->slug ) ),
    352             ), '/'
     357            ),
     358            '/'
    353359        );
    354360
     
    396402            array(
    397403                'tag' => array( $c1->slug, $c2->slug ),
    398             ), '/'
     404            ),
     405            '/'
    399406        );
    400407
     
    424431            array(
    425432                'test_tax_cat' => 'test1',
    426             ), '/'
     433            ),
     434            '/'
    427435        );
    428436
     
    452460            array(
    453461                'test_tax_cat' => 'test1,test2',
    454             ), '/'
     462            ),
     463            '/'
    455464        );
    456465
     
    483492            array(
    484493                'test_tax_cat' => array( 'test1', 'test2' ),
    485             ), '/'
     494            ),
     495            '/'
    486496        );
    487497
     
    520530
    521531        register_post_type(
    522             'guide', array(
     532            'guide',
     533            array(
    523534                'name'         => 'Guide',
    524535                'public'       => true,
Note: See TracChangeset for help on using the changeset viewer.