prettier-plugin-sql
An opinionated sql formatter plugin for Prettier
Prettier is an opinionated code formatter. It enforces a consistent style by parsing your code and re-printing, taking various rules into account.
This plugin adds support for a lot of sql files through sql-formatter or node-sql-parser.
Notice
This plugin is still under development, its printer just wraps sql-formatter or node-sql-parser's default printer.
Of course it should just work, but may not match prettier's format sometimes.
Requirements
prettier-plugin-sql
is an evergreen module. 🌲 This module requires an LTS Node version (v10.0.0+).
Install
Using npm:
npm i -D prettier prettier-plugin-sql
yarn add -D prettier prettier-plugin-sql
Usage
Once installed, Prettier plugins should be automatically recognized by Prettier. To use this plugin, confirm that it's installed and run Prettier using your preferred method. For example:
npx prettier --write db.sql
yarn prettier --write db.sql
Parser Options
interface SqlOptions {
formatter: 'sql-formatter' | 'node-sql-parser'
language:
| 'sql'
| 'mariadb'
| 'mysql'
| 'postgresql'
| 'db2'
| 'plsql'
| 'n1ql'
| 'redshift'
| 'spark'
| 'tsql'
uppercase: boolean
linesBetweenQueries: number
type: 'table' | 'column'
database:
| 'bigquery'
| 'db2'
| 'hive'
| 'mariadb'
| 'mysql'
| 'postgresql'
| 'transactsql'
| 'flinksql'
}
More details on sql-formatter and node-sql-parser.
Changelog
Detailed changes for each release are documented in CHANGELOG.md.
License
MIT © JounQin@1stG.me