Either use only spaces or only tabs for the indentation of a text block. Mixing white space will lead to a result with irregular indentation.

Noncompliant Code Example

String textBlock = """
        this is
<tab>text block!
        !!!!
      """;

Compliant Solution

String textBlock = """
        this is
        text block!
        !!!!
      """;

See