This will allow to use syntax highlighting, without linting.
Linting don't work very well in all projects and for all queries. For example if there is multiple statements in the query, like
DDL query
create table table_a (
name text not null
);
create table table_b (
not_name text not null
);
Or when you want to use database which has different database name than the username, (limited by sql-lint module).
But the highlighting is working well, so be able to use at least the syntax highlighting when linting is not working, may be very useful for some users.
This will allow to use syntax highlighting, without linting.
Linting don't work very well in all projects and for all queries. For example if there is multiple statements in the query, like DDL query
Or when you want to use database which has different database name than the username, (limited by
sql-lint
module).But the highlighting is working well, so be able to use at least the syntax highlighting when linting is not working, may be very useful for some users.