SELECT
this_column,
my_table.THAT_COLUMN AS this_name,
some_number *10 AS a_bigger_number
from my_table
$ sqlfluff lint test.sql
== [test.sql] FAIL
L: 3 | P: 5 | L028 | Qualified reference 'my_table.THAT_COLUMN'
| found in a single table select this is
| inconsistent with previous references.
L: 3 | P: 14 | L014 | Inconsistent capitalisation of unquoted
| identifiers.
L: 4 | P: 18 | L006 | Operators should be followed by a space.