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-admin/includes/class-walker-nav-menu-edit.php

    r42343 r43571  
    153153                                                                    <?php
    154154                                                                    echo ( isset( $_GET['edit-menu-item'] ) && $item_id == $_GET['edit-menu-item'] ) ? admin_url( 'nav-menus.php' ) : add_query_arg( 'edit-menu-item', $item_id, remove_query_arg( $removed_args, admin_url( 'nav-menus.php#menu-item-settings-' . $item_id ) ) );
    155                         ?>
     155                                                                    ?>
    156156                        " aria-label="<?php esc_attr_e( 'Edit menu item' ); ?>"><span class="screen-reader-text"><?php _e( 'Edit' ); ?></span></a>
    157157                    </span>
     
    233233                                                                                            'delete-menu_item_' . $item_id
    234234                                                                                        );
    235                     ?>
     235                                                                                        ?>
    236236                    "><?php _e( 'Remove' ); ?></a> <span class="meta-sep hide-if-no-js"> | </span> <a class="item-cancel submitcancel hide-if-no-js" id="cancel-<?php echo $item_id; ?>" href="
    237237                    <?php
     
    241241                                'edit-menu-item' => $item_id,
    242242                                'cancel'         => time(),
    243                             ), admin_url( 'nav-menus.php' )
     243                            ),
     244                            admin_url( 'nav-menus.php' )
    244245                        )
    245246                    );
    246                         ?>
     247                    ?>
    247248                        #menu-item-settings-<?php echo $item_id; ?>"><?php _e( 'Cancel' ); ?></a>
    248249                </div>
Note: See TracChangeset for help on using the changeset viewer.