no_trailing_whitespace.rst 651 B

12345678910111213141516171819202122232425262728293031323334
  1. ===============================
  2. Rule ``no_trailing_whitespace``
  3. ===============================
  4. Remove trailing whitespace at the end of non-blank lines.
  5. Examples
  6. --------
  7. Example #1
  8. ~~~~~~~~~~
  9. .. code-block:: diff
  10. --- Original
  11. +++ New
  12. @@ -1,2 +1,2 @@
  13. <?php
  14. -$a = 1;
  15. +$a = 1;
  16. Rule sets
  17. ---------
  18. The rule is part of the following rule sets:
  19. @PSR2
  20. Using the ``@PSR2`` rule set will enable the ``no_trailing_whitespace`` rule.
  21. @Symfony
  22. Using the ``@Symfony`` rule set will enable the ``no_trailing_whitespace`` rule.
  23. @PhpCsFixer
  24. Using the ``@PhpCsFixer`` rule set will enable the ``no_trailing_whitespace`` rule.