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/general-template.php

    r43377 r43571  
    646646        case 'siteurl': // DEPRECATED
    647647            _deprecated_argument(
    648                 __FUNCTION__, '2.2.0', sprintf(
     648                __FUNCTION__,
     649                '2.2.0',
     650                sprintf(
    649651                    /* translators: 1: 'siteurl'/'home' argument, 2: bloginfo() function name, 3: 'url' argument */
    650652                    __( 'The %1$s option is deprecated for the family of %2$s functions. Use the %3$s option instead.' ),
     
    723725        case 'text_direction':
    724726            _deprecated_argument(
    725                 __FUNCTION__, '2.2.0', sprintf(
     727                __FUNCTION__,
     728                '2.2.0',
     729                sprintf(
    726730                    /* translators: 1: 'text_direction' argument, 2: bloginfo() function name, 3: is_rtl() function name */
    727731                    __( 'The %1$s option is deprecated for the family of %2$s functions. Use the %3$s function instead.' ),
     
    18871891                            'm' => $arc_year,
    18881892                            'w' => $result->week,
    1889                         ), home_url( '/' )
     1893                        ),
     1894                        home_url( '/' )
    18901895                    );
    18911896                    if ( 'post' !== $r['post_type'] ) {
     
    21072112        FROM $wpdb->posts WHERE post_date >= '{$thisyear}-{$thismonth}-01 00:00:00'
    21082113        AND post_type = 'post' AND post_status = 'publish'
    2109         AND post_date <= '{$thisyear}-{$thismonth}-{$last_day} 23:59:59'", ARRAY_N
     2114        AND post_date <= '{$thisyear}-{$thismonth}-{$last_day} 23:59:59'",
     2115        ARRAY_N
    21102116    );
    21112117    if ( $dayswithposts ) {
     
    33603366    if ( 'text/css' === $type ) {
    33613367        $settings['codemirror'] = array_merge(
    3362             $settings['codemirror'], array(
     3368            $settings['codemirror'],
     3369            array(
    33633370                'mode'              => 'css',
    33643371                'lint'              => true,
     
    33693376    } elseif ( 'text/x-scss' === $type || 'text/x-less' === $type || 'text/x-sass' === $type ) {
    33703377        $settings['codemirror'] = array_merge(
    3371             $settings['codemirror'], array(
     3378            $settings['codemirror'],
     3379            array(
    33723380                'mode'              => $type,
    33733381                'lint'              => false,
     
    33783386    } elseif ( 'text/x-diff' === $type ) {
    33793387        $settings['codemirror'] = array_merge(
    3380             $settings['codemirror'], array(
     3388            $settings['codemirror'],
     3389            array(
    33813390                'mode' => 'diff',
    33823391            )
     
    33843393    } elseif ( 'text/html' === $type ) {
    33853394        $settings['codemirror'] = array_merge(
    3386             $settings['codemirror'], array(
     3395            $settings['codemirror'],
     3396            array(
    33873397                'mode'              => 'htmlmixed',
    33883398                'lint'              => true,
     
    34003410    } elseif ( 'text/x-gfm' === $type ) {
    34013411        $settings['codemirror'] = array_merge(
    3402             $settings['codemirror'], array(
     3412            $settings['codemirror'],
     3413            array(
    34033414                'mode'                => 'gfm',
    34043415                'highlightFormatting' => true,
     
    34073418    } elseif ( 'application/javascript' === $type || 'text/javascript' === $type ) {
    34083419        $settings['codemirror'] = array_merge(
    3409             $settings['codemirror'], array(
     3420            $settings['codemirror'],
     3421            array(
    34103422                'mode'              => 'javascript',
    34113423                'lint'              => true,
     
    34163428    } elseif ( false !== strpos( $type, 'json' ) ) {
    34173429        $settings['codemirror'] = array_merge(
    3418             $settings['codemirror'], array(
     3430            $settings['codemirror'],
     3431            array(
    34193432                'mode'              => array(
    34203433                    'name' => 'javascript',
     
    34323445    } elseif ( false !== strpos( $type, 'jsx' ) ) {
    34333446        $settings['codemirror'] = array_merge(
    3434             $settings['codemirror'], array(
     3447            $settings['codemirror'],
     3448            array(
    34353449                'mode'              => 'jsx',
    34363450                'autoCloseBrackets' => true,
     
    34403454    } elseif ( 'text/x-markdown' === $type ) {
    34413455        $settings['codemirror'] = array_merge(
    3442             $settings['codemirror'], array(
     3456            $settings['codemirror'],
     3457            array(
    34433458                'mode'                => 'markdown',
    34443459                'highlightFormatting' => true,
     
    34473462    } elseif ( 'text/nginx' === $type ) {
    34483463        $settings['codemirror'] = array_merge(
    3449             $settings['codemirror'], array(
     3464            $settings['codemirror'],
     3465            array(
    34503466                'mode' => 'nginx',
    34513467            )
     
    34533469    } elseif ( 'application/x-httpd-php' === $type ) {
    34543470        $settings['codemirror'] = array_merge(
    3455             $settings['codemirror'], array(
     3471            $settings['codemirror'],
     3472            array(
    34563473                'mode'              => 'php',
    34573474                'autoCloseBrackets' => true,
     
    34653482    } elseif ( 'text/x-sql' === $type || 'text/x-mysql' === $type ) {
    34663483        $settings['codemirror'] = array_merge(
    3467             $settings['codemirror'], array(
     3484            $settings['codemirror'],
     3485            array(
    34683486                'mode'              => 'sql',
    34693487                'autoCloseBrackets' => true,
     
    34733491    } elseif ( false !== strpos( $type, 'xml' ) ) {
    34743492        $settings['codemirror'] = array_merge(
    3475             $settings['codemirror'], array(
     3493            $settings['codemirror'],
     3494            array(
    34763495                'mode'              => 'xml',
    34773496                'autoCloseBrackets' => true,
     
    34843503    } elseif ( 'text/x-yaml' === $type ) {
    34853504        $settings['codemirror'] = array_merge(
    3486             $settings['codemirror'], array(
     3505            $settings['codemirror'],
     3506            array(
    34873507                'mode' => 'yaml',
    34883508            )
     
    39743994
    39753995    wp_admin_css_color(
    3976         'fresh', _x( 'Default', 'admin color scheme' ),
     3996        'fresh',
     3997        _x( 'Default', 'admin color scheme' ),
    39773998        false,
    39783999        array( '#222', '#333', '#0073aa', '#00a0d2' ),
     
    39904011
    39914012    wp_admin_css_color(
    3992         'light', _x( 'Light', 'admin color scheme' ),
     4013        'light',
     4014        _x( 'Light', 'admin color scheme' ),
    39934015        admin_url( "css/colors/light/colors$suffix.css" ),
    39944016        array( '#e5e5e5', '#999', '#d64e07', '#04a4cc' ),
     
    40014023
    40024024    wp_admin_css_color(
    4003         'blue', _x( 'Blue', 'admin color scheme' ),
     4025        'blue',
     4026        _x( 'Blue', 'admin color scheme' ),
    40044027        admin_url( "css/colors/blue/colors$suffix.css" ),
    40054028        array( '#096484', '#4796b3', '#52accc', '#74B6CE' ),
     
    40124035
    40134036    wp_admin_css_color(
    4014         'midnight', _x( 'Midnight', 'admin color scheme' ),
     4037        'midnight',
     4038        _x( 'Midnight', 'admin color scheme' ),
    40154039        admin_url( "css/colors/midnight/colors$suffix.css" ),
    40164040        array( '#25282b', '#363b3f', '#69a8bb', '#e14d43' ),
     
    40234047
    40244048    wp_admin_css_color(
    4025         'sunrise', _x( 'Sunrise', 'admin color scheme' ),
     4049        'sunrise',
     4050        _x( 'Sunrise', 'admin color scheme' ),
    40264051        admin_url( "css/colors/sunrise/colors$suffix.css" ),
    40274052        array( '#b43c38', '#cf4944', '#dd823b', '#ccaf0b' ),
     
    40344059
    40354060    wp_admin_css_color(
    4036         'ectoplasm', _x( 'Ectoplasm', 'admin color scheme' ),
     4061        'ectoplasm',
     4062        _x( 'Ectoplasm', 'admin color scheme' ),
    40374063        admin_url( "css/colors/ectoplasm/colors$suffix.css" ),
    40384064        array( '#413256', '#523f6d', '#a3b745', '#d46f15' ),
     
    40454071
    40464072    wp_admin_css_color(
    4047         'ocean', _x( 'Ocean', 'admin color scheme' ),
     4073        'ocean',
     4074        _x( 'Ocean', 'admin color scheme' ),
    40484075        admin_url( "css/colors/ocean/colors$suffix.css" ),
    40494076        array( '#627c83', '#738e96', '#9ebaa0', '#aa9d88' ),
     
    40564083
    40574084    wp_admin_css_color(
    4058         'coffee', _x( 'Coffee', 'admin color scheme' ),
     4085        'coffee',
     4086        _x( 'Coffee', 'admin color scheme' ),
    40594087        admin_url( "css/colors/coffee/colors$suffix.css" ),
    40604088        array( '#46403c', '#59524c', '#c7a589', '#9ea476' ),
Note: See TracChangeset for help on using the changeset viewer.