-
Notifications
You must be signed in to change notification settings - Fork 26
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Option to disable sql-lint? #110
Comments
This could be something VSCodium related. I'm trying to get some help here VSCodium/vscodium#1509 so I can install and debug this.. |
I found a work-around. Comment out these two lines:
// errors = await (0, sql_lint_1.default)({ sql: sqlStr });
// log.appendLine(`${errors.length} errors found`); The sql lint runs unless you have DB integration on: if (configuration.get('enableDBIntegration')) {
// ...
} else {
errors = await (0, sql_lint_1.default)({ sql: sqlStr });
log.appendLine(`${errors.length} errors found`);
} |
This is a huge pain, I start typing and the entire query flashes red due to trailing whitespace. |
Is there anyway to use just the syntax highlighting without sql-lint in VSCodium?
The text was updated successfully, but these errors were encountered: