The surqlfmt tool reformats .surql files to follow a consistent style. It adjusts whitespace, indentation, and keyword casing so that SurrealQL code is easy to read and review.
Installation
The tool can be installed through a single npm install command:
Usage
The tool outputs the reformatted file by default, and when the --write flag is passed in will reformat a .surql file in place.
When to use the formatter
Before committing — run
surreal fmton any.surqlmigration or seed files to keep diffs clean.In CI — add a formatting check to catch inconsistencies early.
During development — pipe ad-hoc queries through the formatter for readability.
For the full list of command-line options, see the CLI reference.