This is a thin wrapper around the SqlParser from the phpMyAdmin project which can be used to lint any amount of sql files from the command line.
Please use Composer to install:
composer require liquipedia/sqllint --dev
./vendor/bin/sqllint
./vendor/bin/sqllint --report=junit > report-junit.xml
Add this to your composer.json
{
"require-dev": {
"liquipedia/sqllint": "*"
},
"scripts": {
"sqllint": [
"sqllint"
],
"sqllint-junit": [
"sqllint --report=junit > report-junit.xml"
]
}
}
and run
composer sqllint
To check out parameters, please refer to the src/Parameters.php
file or use the --help
parameter.
Parameters for SqlLint can optionally also be provided via a .sqllint.json
file in the project root. Parameters passed via command line always have precedence over the parameters set in .sqllint.json
.
Example:
{
"report": "junit"
}