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/src/wp-includes/link-template.php

    r43506 r43571  
    174174            if ( $cats ) {
    175175                $cats = wp_list_sort(
    176                     $cats, array(
     176                    $cats,
     177                    array(
    177178                        'term_id' => 'ASC',
    178179                    )
     
    293294                    'post_type' => $post->post_type,
    294295                    'p'         => $post->ID,
    295                 ), ''
     296                ),
     297                ''
    296298            );
    297299        }
     
    699701                    'feed'          => $feed,
    700702                    'attachment_id' => $post_id,
    701                 ), home_url( '/' )
     703                ),
     704                home_url( '/' )
    702705            );
    703706        } elseif ( 'page' == $post->post_type ) {
     
    706709                    'feed'    => $feed,
    707710                    'page_id' => $post_id,
    708                 ), home_url( '/' )
     711                ),
     712                home_url( '/' )
    709713            );
    710714        } else {
     
    713717                    'feed' => $feed,
    714718                    'p'    => $post_id,
    715                 ), home_url( '/' )
     719                ),
     720                home_url( '/' )
    716721            );
    717722        }
     
    25232528function get_the_post_navigation( $args = array() ) {
    25242529    $args = wp_parse_args(
    2525         $args, array(
     2530        $args,
     2531        array(
    25262532            'prev_text'          => '%title',
    25272533            'next_text'          => '%title',
     
    25962602    if ( $GLOBALS['wp_query']->max_num_pages > 1 ) {
    25972603        $args = wp_parse_args(
    2598             $args, array(
     2604            $args,
     2605            array(
    25992606                'prev_text'          => __( 'Older posts' ),
    26002607                'next_text'          => __( 'Newer posts' ),
     
    26512658    if ( $GLOBALS['wp_query']->max_num_pages > 1 ) {
    26522659        $args = wp_parse_args(
    2653             $args, array(
     2660            $args,
     2661            array(
    26542662                'mid_size'           => 1,
    26552663                'prev_text'          => _x( 'Previous', 'previous set of posts' ),
     
    29562964    if ( get_comment_pages_count() > 1 ) {
    29572965        $args = wp_parse_args(
    2958             $args, array(
     2966            $args,
     2967            array(
    29592968                'prev_text'          => __( 'Older comments' ),
    29602969                'next_text'          => __( 'Newer comments' ),
     
    30083017    $navigation   = '';
    30093018    $args         = wp_parse_args(
    3010         $args, array(
     3019        $args,
     3020        array(
    30113021            'screen_reader_text' => __( 'Comments navigation' ),
    30123022        )
     
    39663976function get_avatar_data( $id_or_email, $args = null ) {
    39673977    $args = wp_parse_args(
    3968         $args, array(
     3978        $args,
     3979        array(
    39693980            'size'           => 96,
    39703981            'height'         => null,
Note: See TracChangeset for help on using the changeset viewer.