Created
April 14, 2019 03:01
-
-
Save sumitpore/1777cbf54693091d95f1f1ee231eeb34 to your computer and use it in GitHub Desktop.
Keywords to use in code to ignore WordPress rules when it makes no sense
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// @codingStandardsIgnoreLine. -> Ignore One Line | |
// @codingStandardsIgnoreStart. -> Start Ignoring Piece of Code | |
// @codingStandardsIgnoreEnd. -> End Ignoring Piece of Code. #2 & #3 are used in conjunction to ignore a block of code. | |
// WPCS: XSS OK. -> Suppress XSS warning. Use only when you know that the text is safe |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment