Inspectopedia Help

Inconsistent whitespace indentation in text block

Reports text blocks that are indented using both spaces and tabs. Such cases produce unexpected results since spaces and tabs are treated equally by the text block processing.

In the following example, spaces and tabs are visualized as · and respectively, and a tab is equal to 4 spaces in the editor.

Example:

String colors = """ ········red ␉ ␉ green ········blue""";

After printing such a string, the result will be:

······red green ······blue

After the compiler removes an equal amount of spaces or tabs from the beginning of each line, some lines remain with leading spaces.

Locating this inspection

By ID

Can be used to locate inspection in e.g. Qodana configuration files, where you can quickly enable or disable it, or adjust its settings.

InconsistentTextBlockIndent
Via Settings dialog

Path to the inspection settings via IntelliJ Platform IDE Settings dialog, when you need to adjust inspection settings directly from your IDE.

Settings or Preferences | Editor | Inspections | Java | Probable bugs

This inspection depends on the Java feature 'Text block literals' which is available since Java 15.

New in 2021.1

Availability

By default bundled with

IntelliJ IDEA 2024.1, Qodana for JVM 2024.1,

Can be installed with plugin

Java, 241.18072

Last modified: 18 June 2024