From 4ded3a39e17b2c646f07902a8672f70b6ba605b8 Mon Sep 17 00:00:00 2001 From: Sterling Harper Date: Sun, 2 Aug 2015 12:24:06 -0600 Subject: [PATCH] Forbid trailing whitespace in the style guide --- docs/source/devguide/styleguide.rst | 2 ++ 1 file changed, 2 insertions(+) diff --git a/docs/source/devguide/styleguide.rst b/docs/source/devguide/styleguide.rst index 25c58ae773..c8644e45cc 100644 --- a/docs/source/devguide/styleguide.rst +++ b/docs/source/devguide/styleguide.rst @@ -153,6 +153,8 @@ Avoid extraneous whitespace in the following situations: Yes: if (variable == 2) then No: if ( variable==2 ) then +Do not leave trailing whitespace at the end of a line. + ------ Python ------