SQL

SQL

Made by DeepSource

File start with ' ' or other whitespace SQL-L050

Style
Minor

Files must not begin with newlines or whitespace.

Bad practice

The file begins with newlines or whitespace.

SELECT
    a
FROM foo

Beginning on an indented line is also forbidden:

    SELECT
    a
FROM
    foo

Recommended

```sql SELECT a FROM foo