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/post/types.php

    r42343 r43571  
    299299
    300300        register_post_type(
    301             'foo', array(
     301            'foo',
     302            array(
    302303                'public'    => true,
    303304                'query_var' => 'bar',
     
    319320
    320321        register_post_type(
    321             'foo', array(
     322            'foo',
     323            array(
    322324                'public'    => true,
    323325                'query_var' => 'bar',
     
    344346
    345347        register_post_type(
    346             'foo', array(
     348            'foo',
     349            array(
    347350                'public'      => true,
    348351                'has_archive' => true,
     
    362365
    363366        register_post_type(
    364             'foo', array(
     367            'foo',
     368            array(
    365369                'public'          => true,
    366370                'capability_type' => 'bar',
     
    387391
    388392        register_post_type(
    389             'foo', array(
     393            'foo',
     394            array(
    390395                'public'   => true,
    391396                'supports' => array( 'editor', 'author', 'title' ),
     
    412417
    413418        register_post_type(
    414             'foo', array(
     419            'foo',
     420            array(
    415421                'public'     => true,
    416422                'taxonomies' => array( 'category', 'post_tag' ),
     
    433439
    434440        register_post_type(
    435             'foo', array(
     441            'foo',
     442            array(
    436443                'public' => true,
    437444            )
     
    451458
    452459        register_post_type(
    453             'foo', array(
     460            'foo',
     461            array(
    454462                'public'               => true,
    455463                'register_meta_box_cb' => '__return_empty_string',
     
    470478
    471479        register_post_type(
    472             'foo', array(
     480            'foo',
     481            array(
    473482                'public' => true,
    474483            )
     
    489498    public function test_post_type_does_not_exist_after_unregister_post_type() {
    490499        register_post_type(
    491             'foo', array(
     500            'foo',
     501            array(
    492502                'public' => true,
    493503            )
Note: See TracChangeset for help on using the changeset viewer.