A linter and auto-formatter for SQLFluff, a popular linting tool for SQL and dbt.
You can run Format Document to fix the linting violations. You cannot run Format Selection. Please note that not all linting violations are automatically fixable.
The extension expects sqlfluff to be installed and already added to the path. If it is installed but cannot be found, add the path to your preferences as seen below. Find the path by typing which sqlfluff
into your terminal.
Edit your VS Code settings.json
file either through the UI or by manually updating the file. The gif below shows the UI path.
If you want to manually update the settings.json
file, open the VS Code command palette and type in settings.json
. Select Preferences: Open Settings
. Then, add the following two lines to settings.json
.
"sql.linter.executablePath": "<PATH_TO_YOUR_SQLFLUFF_FROM_WHICH_SQLFLUFF_COMMAND",
"sql.linter.run": "onType"
By default the linter will lint on the fly "sql.linter.run": "onType"
but can be changed to linting as you save "sql.linter.run": "onSave"
. Note that linting on save is most useful when auto-save is on.
By default you will be able use SQLFluff fix your file by formatting. Same as calling sqlfluff fix --force --no-safey <path>
The extension is based off of the ruby linter extension.