SQL

SQL

Made by DeepSource

Indentation not consistent with previous lines SQL-L003

Style
Minor

Bad practice

Convention: Here, the • character represents a space. In this example, the third line contains five spaces instead of four.

SELECT
••••a,
•••••b
FROM foo

Recommended

Change the indentation to use a multiple of four spaces.

SELECT
••••a,
••••b
FROM foo

The defaults can be configured per your needs with the following parameters in the analyzers.meta section.

Parameter Type Default value
tabspacesize Integer 4
indent_unit String "space"