Skip to content

Commit cd27070

Browse files
committed
Update the coding standards and developer policy documentation surrounding whitespace.
Clarify that you should not introduce trailing whitespace when making a commit and that you should not remove trailing whitespace that's unrelated to code you are changing or are about to change. Then clarified the developer policy around what is considered an obvious whitespace commit. llvm-svn: 339455
1 parent 8626d36 commit cd27070

File tree

3 files changed

+16
-3
lines changed

3 files changed

+16
-3
lines changed

llvm/docs/CodingStandards.rst

+8-2
Original file line numberDiff line numberDiff line change
@@ -494,8 +494,8 @@ for it (vs something else, like 90 columns).
494494
This is one of many contentious issues in coding standards, but it is not up for
495495
debate.
496496

497-
Use Spaces Instead of Tabs
498-
^^^^^^^^^^^^^^^^^^^^^^^^^^
497+
Whitespace
498+
^^^^^^^^^^
499499

500500
In all cases, prefer spaces to tabs in source files. People have different
501501
preferred indentation levels, and different styles of indentation that they
@@ -509,6 +509,12 @@ indentation, **DO NOT** do that in the middle of a chunk of code with two spaces
509509
of indentation. Also, do not reindent a whole source file: it makes for
510510
incredible diffs that are absolutely worthless.
511511

512+
Do not commit changes that include trailing whitespace. If you find trailing
513+
whitespace in a file, do not remove it unless you're otherwise changing that
514+
line of code. Some common editors will automatically remove trailing whitespace
515+
when saving a file which causes unrelated changes to appear in diffs and
516+
commits.
517+
512518
Indent Code Consistently
513519
^^^^^^^^^^^^^^^^^^^^^^^^
514520

llvm/docs/DeveloperPolicy.rst

+7-1
Original file line numberDiff line numberDiff line change
@@ -376,7 +376,13 @@ If you have recently been granted commit access, these policies apply:
376376
obvious. This is clearly a subjective decision --- we simply expect you to
377377
use good judgement. Examples include: fixing build breakage, reverting
378378
obviously broken patches, documentation/comment changes, any other minor
379-
changes.
379+
changes. Avoid committing formatting- or whitespace-only changes outside of
380+
code you plan to make subsequent changes to. Also, try to separate
381+
formatting or whitespace changes from functional changes, either by
382+
correcting the format first (ideally) or afterward. Such changes should be
383+
highly localized and the commit message should clearly state that the commit
384+
is not intended to change functionality, usually by stating it is
385+
:ref:`NFC <nfc>`.
380386

381387
#. You are allowed to commit patches without approval to those portions of LLVM
382388
that you have contributed or maintain (i.e., have been assigned

llvm/docs/Lexicon.rst

+1
Original file line numberDiff line numberDiff line change
@@ -185,6 +185,7 @@ M
185185

186186
N
187187
-
188+
.. _nfc:
188189

189190
**NFC**
190191
"No functional change". Used in a commit message to indicate that a patch

0 commit comments

Comments
 (0)