All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.sonar.l10n.delphi.rules.community-delphi.TabulationCharacter.html Maven / Gradle / Ivy

The newest version!

Why is this an issue?

Delphi code should not be indented with tab characters. Doing so has a number of detriments:

  • Developers must configure the tab width of their text editors
  • Spaces and tabs may be mixed in code
  • The resultant code violates Delphi's Object Pascal Style Guide

How to fix it

Instead of using tab characters, indent two spaces for all indentation levels.

type
  TMyObject = class(TObject)
  public
    procedure Foo;
  end;

Resources





© 2015 - 2024 Weber Informatics LLC | Privacy Policy