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/formatting/MapDeep.php

    r42343 r43571  
    1616                'ababa',
    1717                'xbaba',
    18             ), map_deep(
     18            ),
     19            map_deep(
    1920                array(
    2021                    'a',
    2122                    'x',
    22                 ), array( $this, 'append_baba' )
     23                ),
     24                array( $this, 'append_baba' )
    2325            )
    2426        );
     
    3234                    'xbaba',
    3335                ),
    34             ), map_deep(
     36            ),
     37            map_deep(
    3538                array(
    3639                    'a',
     
    3841                        'x',
    3942                    ),
    40                 ), array( $this, 'append_baba' )
     43                ),
     44                array( $this, 'append_baba' )
    4145            )
    4246        );
     
    5054                    'var0' => 'xbaba',
    5155                ),
    52             ), map_deep(
     56            ),
     57            map_deep(
    5358                array(
    5459                    'var0' => 'a',
     
    5661                        'var0' => 'x',
    5762                    ),
    58                 ), array( $this, 'append_baba' )
     63                ),
     64                array( $this, 'append_baba' )
    5965            )
    6066        );
     
    7480                'var0' => 'ababa',
    7581                'var1' => 'xbaba',
    76             ), map_deep(
     82            ),
     83            map_deep(
    7784                (object) array(
    7885                    'var0' => 'a',
    7986                    'var1' => 'x',
    80                 ), array( $this, 'append_baba' )
     87                ),
     88                array( $this, 'append_baba' )
    8189            )
    8290        );
     
    9098                    'xbaba',
    9199                ),
    92             ), map_deep(
     100            ),
     101            map_deep(
    93102                (object) array(
    94103                    'var0' => 'a',
     
    96105                        'x',
    97106                    ),
    98                 ), array( $this, 'append_baba' )
     107                ),
     108                array( $this, 'append_baba' )
    99109            )
    100110        );
     
    108118                    'var0' => 'xbaba',
    109119                ),
    110             ), map_deep(
     120            ),
     121            map_deep(
    111122                (object) array(
    112123                    'var0' => 'a',
     
    114125                        'var0' => 'x',
    115126                    ),
    116                 ), array( $this, 'append_baba' )
     127                ),
     128                array( $this, 'append_baba' )
    117129            )
    118130        );
     
    132144                'var0' => 'ababa',
    133145                'var1' => 'xbaba',
    134             ), map_deep( $object_b, array( $this, 'append_baba' ) )
     146            ),
     147            map_deep( $object_b, array( $this, 'append_baba' ) )
    135148        );
    136149    }
     
    149162                'var0' => 'ababa',
    150163                'var1' => 'xbaba',
    151             ), map_deep( $array_b, array( $this, 'append_baba' ) )
     164            ),
     165            map_deep( $array_b, array( $this, 'append_baba' ) )
    152166        );
    153167    }
Note: See TracChangeset for help on using the changeset viewer.