Make WordPress Core


Ignore:
Timestamp:
10/01/2023 12:20:53 AM (12 months ago)
Author:
SergeyBiryukov
Message:

Coding Standards: Remove redundant ignore annotations, take 4.

This removes ignore annotations related to sniffs which are not used by WP Core (like sniffs in the WordPress-Extra ruleset).

Follow-up to [48072], [51003], [55204], [56714].

Props jrf.
See #59161.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/wp-includes/sitemaps/class-wp-sitemaps-stylesheet.php

    r55210 r56752  
    2626
    2727        if ( 'sitemap' === $type ) {
    28             // phpcs:ignore WordPress.Security.EscapeOutput.OutputNotEscaped -- All content escaped below.
     28            // All content is escaped below.
    2929            echo $this->get_sitemap_stylesheet();
    3030        }
    3131
    3232        if ( 'index' === $type ) {
    33             // phpcs:ignore WordPress.Security.EscapeOutput.OutputNotEscaped -- All content escaped below.
     33            // All content is escaped below.
    3434            echo $this->get_sitemap_index_stylesheet();
    3535        }
Note: See TracChangeset for help on using the changeset viewer.