barklan / inline_sql_syntax

Highlight and lint inline SQL strings.
https://marketplace.visualstudio.com/items?itemName=qufiwefefwoyn.inline-sql-syntax
MIT License
57 stars 24 forks source link

Add configuration to disable linting #119

Open hos opened 5 months ago

hos commented 5 months ago

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.

rshedzer commented 5 months ago

Looking forward to this being merged