Skip to content

Files

Latest commit

 

History

History
16 lines (9 loc) · 576 Bytes

no_tabs.md

File metadata and controls

16 lines (9 loc) · 576 Bytes

Pattern: Use of tab character

Issue: -

Description

Checks that there are no tab characters ('\t') in the source code.

Rationale:

  • Developers should not need to configure the tab width of their text editors in order to be able to read source code.
  • In a distributed development environment where diffs are sent to the mailing lists by both developers and the version control system (which sends commit log messages), the use tabs makes it impossible to preserve legibility.

Further Reading